@charset "UTF-8";
:root {
  --f7-theme-color: #333;
  --bg: #f7f8fb;
  --card: #f3f4f8;
  --muted: #666;
  --accent: #0b5fff;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  line-height: 1.6;
  margin: 0;
  background: var(--bg);
  color: #111;
}

.collage {
  margin: 0px;
  width: 100%;
  overflow: hidden;
  border-radius: 0px;
  display: grid;
  grid-template: 1fr 1fr/1fr 1fr 1fr 1fr;
  gap: 8px;
}

.popover.smart-select-popover {
  padding: 0 18px !important;
}

.image {
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}

.block-title:not(footer .block-title) {
  overflow: visible !important;
  position: relative;
  padding-bottom: 0.7rem;
}
.block-title:not(footer .block-title)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4rem;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff7e5f 0%, #feb47b 60%, rgba(254, 180, 123, 0) 100%);
}

.collage img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}

@media (min-width: 62em) {
  .collage .image:nth-child(1) {
    grid-area: 1/1/3/3;
  }
}
@media (min-width: 36em) and (max-width: 61.9988em) {
  .collage .image:nth-child(1) {
    grid-area: 1/1/3/3;
  }
}
@media (max-width: 992px) {
  .collage .image:nth-child(5) {
    display: none;
  }
  .collage .image:nth-child(4) {
    grid-area: 2/3/3/5;
  }
}
@media (max-width: 767px) {
  .collage .image:nth-child(4) {
    display: none;
  }
  .collage .image:nth-child(3) {
    grid-area: 2/3/3/5;
  }
  .collage .image:nth-child(2) {
    grid-area: 1/3/1/5;
  }
}
p {
  font-size: 16px !important;
}

@media (max-width: 35.9988em) {
  .collage .image:nth-child(2),
  .collage .image:nth-child(3),
  .collage .image:nth-child(4),
  .collage .image:nth-child(5) {
    display: none !important;
  }
  .collage {
    display: block !important;
  }
  *,
  html {
    text-overflow: unset !important;
    white-space: wrap !important;
  }
  .collage img {
    border-radius: 0 !important;
  }
}
.page-content {
  margin-top: 64px;
  padding-top: 0 !important;
  box-sizing: border-box;
}

.t-widget {
  display: flex !important;
  justify-content: center;
}

.t-widget div:first-child {
  flex: 1;
  max-width: 500px !important;
}

.d-none {
  display: none;
}

.grid-container {
  display: grid;
  grid-template-columns: 66% 34%;
  gap: 10px; /* optional */
}

.blog .grid-container,
.blog-posts .grid-container {
  display: grid;
  grid-template-columns: 80% 20%;
  gap: 10px; /* optional */
}

@media (max-width: 1023px) {
  .grid-container {
    display: block;
  }
}
@media (max-width: 1023px) {
  .blog-posts .grid-container,
  .blog .grid-container {
    display: block;
  }
}
.block,
.timeline-item-text,
.list .item-title,
.card-content {
  font-size: 16px;
}

@media (min-width: 930px) {
  .grid-container {
    grid-template-columns: 66% 34%;
    gap: 10px; /* optional */
  }
}
@media (min-width: 1200px) {
  .grid-container {
    grid-template-columns: 66% 34%;
    gap: 10px; /* optional */
  }
}
.block-title {
  margin-left: 0;
}

.timeline,
.item-content:not(.card .item-content),
.block {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.muted-blue {
  background-color: #eef4fa !important;
}

.color-orange {
  color: #ffc107;
}

.iconradio_button_on,
.iconcamera {
  font-size: 20px;
}

.color-green {
  color: #00aa6c;
}

a.init-gallery {
  opacity: 1;
  transition: opacity 0.1s;
}

a.init-gallery:not(.button):hover {
  opacity: 0.8;
  transition: opacity 0.1s;
}

#collage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
  z-index: 2;
  position: relative;
}

.skeleton-effect-fade,
.skeleton-effect-wave,
.skeleton-effect-pulse {
  animation-duration: 2s;
}

.image svg {
  width: 100%;
  height: 100%;
}

.message {
  max-width: 90%;
}

.brand-title {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #ff6f61, #ffa726, #ffcc80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "Playfair Display", serif; /* Fancy serif font */
  margin: 1rem 0;
  animation: fadeInBrand 1.2s ease-out both;
}

/* Optional fade-in animation */
@keyframes fadeInBrand {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.item-input:before {
  display: none !important;
}
.item-input:after {
  display: none !important;
}

.scrollable-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.scrollable-chips::-webkit-scrollbar {
  display: none; /* hide scrollbar for clean look */
}

.scrollable-chips .chip {
  flex: 0 0 auto;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.scrollable-chips .chip-active {
  background-color: var(--f7-theme-color);
  color: #fff;
}

.post-card img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}
.mobile-only {
  display: block;
}

@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}
.overlay {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 98 !important;
}

.lazy-image {
  opacity: 0;
  transition: opacity 0.2s linear;
}

.lazy-image.fade-in {
  opacity: 1 !important;
}

summary {
  display: flex !important;
  gap: 6px;
}
summary::before {
  content: "►";
  font-family: "material-icons" !important;
}

details[open] > summary::before {
  content: "▼"; /* or rotate the same symbol */
}

.wrap {
  max-width: 900px;
  margin: 36px auto;
  padding: 24px;
}

.card {
  background: var(--card);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(18, 25, 40, 0.06);
}

p {
  margin: 8px 0;
}

small {
  color: var(--muted);
}

a {
  color: var(--accent);
  text-decoration: none;
}

.meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.lang-links {
  margin-top: 12px;
}

.divider {
  height: 1px;
  background: #eef1f6;
  margin: 20px 0;
  border-radius: 2px;
}

.note {
  background: #fff6d6;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #fff0b8;
  color: #6b4b00;
}

footer {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

pre {
  white-space: pre-wrap;
  background: #f3f4f8;
  padding: 12px;
  border-radius: 6px;
  overflow: auto;
}

.block-title + .block {
  margin-bottom: 14px !important;
}/*# sourceMappingURL=app.css.map */