:root {
  --page-bg: #f4f7fb;
  --surface: #ffffff;
  --surface-muted: #f8fafc;
  --text-main: #172033;
  --text-muted: #6b7280;
  --border-color: rgba(15, 23, 42, 0.08);
  --primary-color: #0d6efd;
  --primary-dark: #0b5ed7;
  --success-color: #198754;
  --danger-color: #dc3545;
  --warning-color: #f59e0b;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.1);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
}

.inline-block {
  display: inline-block;
}

.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

body {
  background: var(--page-bg);
  color: var(--text-main);
}

a {
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.card-hover,
.transition-all,
.transition {
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.card-hover:hover,
.hover-shadow:hover,
.hover-shadow-lg:hover,
.transition:hover {
  transform: translateY(-4px);
}

.hover-shadow:hover,
.hover-shadow-lg:hover,
.card-hover:hover {
  box-shadow: var(--shadow-md) !important;
}

.search-header,
.auth-card,
.post-card,
.search-card,
.comment-card,
.modern-card {
  background: var(--surface);
  border: 1px solid var(--border-color);
}

.search-card,
.post-card,
.comment-card {
  border-radius: var(--radius-md);
}

.no-image {
  min-height: 180px;
  background: linear-gradient(135deg, #eef2f7, #dde5ef);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 2rem;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.object-fit-cover {
  object-fit: cover;
}

.img-link-hover,
.img-link-hover img {
  display: block;
}

.img-link-hover {
  overflow: hidden;
}

.img-link-hover img,
.post-img,
.search-img,
.modern-img {
  transition: transform 0.45s ease;
}

.img-link-hover:hover img,
.post-card:hover .post-img,
.search-card:hover .search-img,
.modern-gallery-item:hover .modern-img {
  transform: scale(1.06);
}

.search-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.page-content,
.post-content,
.about-content {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-content img,
.post-content img,
.about-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.page-content iframe,
.post-content iframe,
.about-content iframe {
  max-width: 100%;
  border: 0;
  border-radius: 16px;
}

.comment-text-box {
  border-color: rgba(13, 110, 253, 0.25) !important;
}

.pagination-modern a,
.pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin: 0 4px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
  transition: all 0.25s ease;
}

.pagination-modern a:hover,
.pagination .page-link:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.pagination-modern a.active,
.pagination .page-item.active .page-link {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 10px 24px rgba(13, 110, 253, 0.22);
}

.modern-filter-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 10px 22px;
  border-radius: 999px;
  margin: 5px;
  font-weight: 700;
  transition: all 0.25s ease;
  color: var(--text-muted);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.modern-filter-btn.active,
.modern-filter-btn:hover {
  background: var(--text-main);
  color: #ffffff;
  border-color: var(--text-main);
  transform: translateY(-1px);
}

.modern-gallery-item {
  cursor: pointer;
  transition: transform 0.35s ease;
}

.modern-gallery-item:hover {
  transform: translateY(-8px);
}

.modern-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.modern-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e9eef5;
}

.modern-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-main);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.modern-title {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.modern-subtitle {
  font-size: 0.78rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.auth-card,
.search-header {
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.transition-btn,
.btn-brand,
.btn-contact {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.transition-btn:hover,
.btn-brand:hover,
.btn-contact:hover {
  transform: translateY(-2px);
}

#countdown-timer {
  letter-spacing: -1px;
}

.status-indicator {
  border-radius: 999px;
}

.vr {
  opacity: 1;
}

mark {
  background: rgba(255, 221, 87, 0.45);
  color: inherit;
  padding: 0 0.15em;
  border-radius: 4px;
}

.border-dashed {
  border-style: dashed !important;
}

.xsmall {
  font-size: 0.75rem;
}

.group:hover .group-hover-text-white {
  color: #ffffff !important;
}

.group-hover-text-white {
  transition: color 0.25s ease;
}

.scroll-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  height: 48px;
  width: 48px;
  cursor: pointer;
  display: block;
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px rgba(13, 110, 253, 0.16), 0 10px 24px rgba(15, 23, 42, 0.12);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 300ms linear;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.scroll-btn.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-btn svg path {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 4;
  transition: all 300ms linear;
}

.scroll-btn::after {
  content: "\f062";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  text-align: center;
  line-height: 48px;
  width: 48px;
  font-size: 18px;
  left: 0;
  top: 0;
  color: var(--primary-color);
}

@media (max-width: 991.98px) {
  .search-img {
    height: 200px;
  }

  .modern-filter-btn {
    padding: 9px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 767.98px) {
  .search-img {
    height: 180px;
  }

  .pagination-modern a,
  .pagination .page-link {
    min-width: 38px;
    height: 38px;
    font-size: 0.92rem;
    margin: 0 3px 6px;
  }

  .scroll-btn {
    right: 16px;
    bottom: 16px;
  }
}
    
    .fw-black { font-weight: 900; }
    .group-hover-scale { transform: scale(1); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
    .group:hover .group-hover-scale { transform: scale(1.15); }
    .group-hover-opacity-100 { opacity: 0.5; }
    .group:hover .group-hover-opacity-100 { opacity: 1 !important; }
    .line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .hover-text-primary:hover { color: #0d6efd !important; }
    .shadow-text { text-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .transition-all { transition: all 0.3s ease; }
    .gap-x-4 { column-gap: 1.5rem; }
    .gap-y-2 { row-gap: 0.5rem; }

    .scroll-btn {
        position: fixed;
        right: 30px;
        bottom: 30px;
        height: 46px;
        width: 46px;
        cursor: pointer;
        display: block;
        border-radius: 50px;
        box-shadow: inset 0 0 0 2px rgba(13, 110, 253, 0.2);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 300ms linear;
    }

    .scroll-btn.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-btn svg path {
        fill: none;
        stroke: #0d6efd;
        stroke-width: 4;
        transition: all 300ms linear;
    }

    .scroll-btn::after {
        content: "\f062";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        text-align: center;
        line-height: 46px;
        width: 46px;
        font-size: 18px;
        left: 0;
        top: 0;
        color: #0d6efd;
    }
    
    
    
    

.gallery-shell {
    --gallery-ink: #122033;
    --gallery-muted: #6b7280;
    --gallery-line: rgba(15, 23, 42, 0.08);
    --gallery-accent: #0d6efd;
    --gallery-warm: #f59e0b;
}

.gallery-hero {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.14), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #f7faff 52%, #eef4ff 100%);
    border: 1px solid var(--gallery-line);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.gallery-hero::before,
.gallery-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.gallery-hero::before {
    width: 240px;
    height: 240px;
    top: -80px;
    right: -60px;
    background: rgba(13, 110, 253, 0.08);
}

.gallery-hero::after {
    width: 170px;
    height: 170px;
    left: -30px;
    bottom: -60px;
    background: rgba(245, 158, 11, 0.08);
}

.gallery-hero-inner {
    position: relative;
    z-index: 1;
    padding: 2.25rem;
}

.gallery-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--gallery-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-hero-title {
    margin: 1rem 0 0.7rem;
    font-size: clamp(2.2rem, 4vw, 3.9rem);
    line-height: 0.93;
    letter-spacing: -0.05em;
    color: var(--gallery-ink);
    font-weight: 900;
}

.gallery-hero-lead {
    margin: 0;
    color: var(--gallery-muted);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 56ch;
}

.gallery-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.gallery-stat {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 22px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.gallery-stat strong {
    display: block;
    color: var(--gallery-ink);
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.gallery-stat span {
    display: block;
    margin-top: 4px;
    color: var(--gallery-muted);
    font-size: 0.82rem;
}

.gallery-filter-wrap {
    margin-top: 1.4rem;
    margin-bottom: 1.35rem;
}

.gallery-filter-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.gallery-filter-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-filter-btn {
    flex: 0 0 auto;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    font-weight: 800;
    transition: all 0.25s ease;
    color: var(--gallery-muted);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background: #111827;
    color: #fff;
    border-color: #111827;
    transform: translateY(-1px);
}

.gallery-tab-content {
    margin-top: 0.6rem;
}

.gallery-col {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
}

.gallery-tile {
    cursor: pointer;
    transition: transform 0.35s ease;
}

.gallery-tile:hover {
    transform: translateY(-8px);
}

.gallery-media {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 1 / 1;
    background: #eaf1fb;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.gallery-tile:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
    opacity: 0.88;
    transition: opacity 0.3s ease;
}

.gallery-tile:hover .gallery-overlay {
    opacity: 1;
}

.gallery-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #111827;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.gallery-zoom {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.92);
    color: #111827;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.gallery-copy {
    padding: 0.9rem 0.4rem 0;
    text-align: center;
}

.gallery-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--gallery-ink);
    letter-spacing: -0.02em;
}

.gallery-subtitle {
    margin: 0.35rem 0 0;
    color: #94a3b8;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gallery-empty {
    text-align: center;
    padding: 4rem 1.5rem;
    background: #fff;
    border: 1px solid var(--gallery-line);
    border-radius: 30px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.gallery-empty-icon {
    width: 96px;
    height: 96px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(245, 158, 11, 0.08));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--gallery-accent);
    margin-bottom: 1rem;
}

.gallery-empty h5 {
    margin-bottom: 0.45rem;
    color: var(--gallery-ink);
    font-weight: 800;
}

.gallery-empty p {
    margin: 0;
    color: var(--gallery-muted);
}

.modal-content {
    background-color: transparent !important;
}

#modalImg {
    border-radius: 20px 0 0 20px;
}

@media (max-width: 991px) {
    .gallery-stats {
        grid-template-columns: 1fr;
    }

    #modalImg {
        border-radius: 20px 20px 0 0;
    }

    .modal-content {
        background-color: #fff !important;
        border-radius: 20px !important;
    }
}








.contact-shell {
    --contact-ink: #132238;
    --contact-muted: #6b7280;
    --contact-line: rgba(15, 23, 42, 0.08);
    --contact-soft: #f8fafc;
    --contact-accent: #0d6efd;
    --contact-accent-dark: #0b5ed7;
    --contact-warm: #f59e0b;
}

.contact-hero {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.14), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f6f9ff 55%, #eef4ff 100%);
    border: 1px solid var(--contact-line);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.contact-hero::before,
.contact-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.contact-hero::before {
    width: 260px;
    height: 260px;
    right: -70px;
    top: -70px;
    background: rgba(13, 110, 253, 0.08);
}

.contact-hero::after {
    width: 180px;
    height: 180px;
    left: -40px;
    bottom: -70px;
    background: rgba(245, 158, 11, 0.08);
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    padding: 2.25rem;
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--contact-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--contact-ink);
    margin: 1.15rem 0 1rem;
    font-weight: 900;
    max-width: 10ch;
}

.contact-lead {
    max-width: 56ch;
    color: var(--contact-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.contact-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 1.75rem;
}

.contact-stat {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 22px;
    padding: 1rem 1rem 0.9rem;
    backdrop-filter: blur(10px);
}

.contact-stat strong {
    display: block;
    font-size: 1.25rem;
    color: var(--contact-ink);
    letter-spacing: -0.03em;
}

.contact-stat span {
    display: block;
    font-size: 0.82rem;
    color: var(--contact-muted);
    margin-top: 4px;
}

.contact-layout {
    margin-top: 1.5rem;
}

.contact-panel,
.contact-aside {
    border-radius: 30px;
    border: 1px solid var(--contact-line);
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.contact-panel {
    overflow: hidden;
}

.contact-panel-head {
    padding: 1.5rem 1.5rem 0;
}

.contact-panel-title {
    margin: 0;
    font-size: 1.35rem;
    color: var(--contact-ink);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.contact-panel-subtitle {
    margin: 0.45rem 0 0;
    color: var(--contact-muted);
    font-size: 0.95rem;
}

.contact-form-wrap {
    padding: 1.5rem;
}

.contact-grid {
    display: grid;
    gap: 1rem;
}

.contact-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-field label {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
}

.contact-input,
.contact-textarea {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: linear-gradient(180deg, #fbfdff 0%, #f8fbff 100%);
    border-radius: 18px;
    color: var(--contact-ink);
    padding: 0.95rem 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-input {
    min-height: 56px;
}

.contact-textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: rgba(13, 110, 253, 0.45);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.10);
    background: #fff;
}

.contact-consent {
    border: 1px solid rgba(245, 158, 11, 0.18);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(255, 255, 255, 0.95));
    border-radius: 22px;
    padding: 1rem 1rem;
}

.contact-consent .form-check-input {
    margin-top: 2px;
}

.contact-captcha {
    border-radius: 24px;
    border: 1px dashed rgba(13, 110, 253, 0.22);
    background:
        radial-gradient(circle at top right, rgba(13, 110, 253, 0.06), transparent 35%),
        #f8fbff;
    padding: 1.25rem;
}

.contact-captcha-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0d6efd;
    color: #fff;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.18);
}

.contact-submit {
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #0d6efd 0%, #1f78ff 100%);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 32px rgba(13, 110, 253, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 36px rgba(13, 110, 253, 0.3);
}

.contact-aside {
    padding: 1.3rem;
    position: sticky;
    top: 96px;
}

.contact-aside-card {
    border-radius: 24px;
    padding: 1.15rem;
    border: 1px solid var(--contact-line);
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.contact-aside-card + .contact-aside-card {
    margin-top: 1rem;
}

.contact-mini-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.contact-connect {
    display: grid;
    gap: 0.85rem;
}

.contact-social-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1rem 1rem;
    border-radius: 22px;
    text-decoration: none;
    color: var(--contact-ink);
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.09);
    border-color: rgba(13, 110, 253, 0.18);
    color: var(--contact-ink);
}

.contact-social-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-social-meta strong {
    display: block;
    font-size: 0.98rem;
    letter-spacing: -0.02em;
}

.contact-social-meta span {
    display: block;
    color: var(--contact-muted);
    font-size: 0.82rem;
    margin-top: 3px;
}

.contact-social-card.mail .contact-social-icon { background: rgba(13, 110, 253, 0.12); color: #0d6efd; }
.contact-social-card.fb .contact-social-icon { background: rgba(24, 119, 242, 0.12); color: #1877f2; }
.contact-social-card.ig .contact-social-icon { background: rgba(225, 48, 108, 0.12); color: #e1306c; }
.contact-social-card.tw .contact-social-icon { background: rgba(15, 23, 42, 0.08); color: #111827; }
.contact-social-card.in .contact-social-icon { background: rgba(10, 102, 194, 0.12); color: #0a66c2; }

.contact-note {
    color: var(--contact-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.contact-user-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(255,255,255,1));
    border: 1px solid rgba(13, 110, 253, 0.12);
    border-radius: 22px;
    padding: 0.95rem 1rem;
}

.contact-user-pill i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #fff;
}

@media (max-width: 991.98px) {
    .contact-aside {
        position: static;
    }

    .contact-grid-2,
    .contact-stat-grid {
        grid-template-columns: 1fr;
    }

    .contact-title {
        max-width: none;
    }
}






.about-shell {
    --about-ink: #122033;
    --about-muted: #6b7280;
    --about-line: rgba(15, 23, 42, 0.08);
    --about-soft: #f8fafc;
    --about-accent: #0d6efd;
    --about-warm: #f59e0b;
}

.about-hero {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, 0.16), transparent 35%),
        radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.14), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #f7faff 52%, #eef4ff 100%);
    border: 1px solid var(--about-line);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.about-hero::before,
.about-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.about-hero::before {
    width: 240px;
    height: 240px;
    top: -80px;
    right: -60px;
    background: rgba(13, 110, 253, 0.08);
}

.about-hero::after {
    width: 160px;
    height: 160px;
    left: -30px;
    bottom: -60px;
    background: rgba(245, 158, 11, 0.08);
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    padding: 2.3rem;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--about-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-title {
    margin: 1rem 0 0.8rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    color: var(--about-ink);
    font-weight: 900;
    max-width: 11ch;
}

.about-lead {
    max-width: 58ch;
    color: var(--about-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin: 0;
}

.about-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.5rem;
}

.about-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--about-ink);
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.about-meta-chip small {
    color: var(--about-muted);
    font-weight: 600;
}

.about-grid {
    margin-top: 1.5rem;
}

.about-story-card,
.about-side-card {
    border-radius: 30px;
    border: 1px solid var(--about-line);
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.about-story-card {
    overflow: hidden;
}

.about-image-wrap {
    position: relative;
    overflow: hidden;
    background: #eaf1fb;
}

.about-image-wrap img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

.about-image-overlay {
    position: absolute;
    inset: auto 20px 20px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    color: var(--about-ink);
    padding: 0.8rem 1rem;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

.about-body {
    padding: 1.8rem;
}

.about-body-head {
    margin-bottom: 1.2rem;
}

.about-body-title {
    margin: 0;
    font-size: 1.4rem;
    color: var(--about-ink);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.about-body-subtitle {
    margin: 0.45rem 0 0;
    color: var(--about-muted);
    font-size: 0.95rem;
}

.about-content {
    color: #334155;
    line-height: 1.9;
    font-size: 1.02rem;
}

.about-content h1,
.about-content h2,
.about-content h3,
.about-content h4 {
    color: var(--about-ink);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-top: 1.6rem;
    margin-bottom: 0.8rem;
}

.about-content p {
    margin-bottom: 1rem;
}

.about-content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 1rem 0;
}

.about-content iframe {
    max-width: 100%;
    border: 0;
    border-radius: 20px;
}

.about-content blockquote {
    margin: 1.3rem 0;
    padding: 1rem 1.2rem;
    border-left: 4px solid var(--about-accent);
    background: #f8fbff;
    border-radius: 0 18px 18px 0;
    color: #334155;
}

.about-side-card {
    padding: 1.25rem;
    position: sticky;
    top: 96px;
}

.about-side-block + .about-side-block {
    margin-top: 1rem;
}

.about-side-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.about-side-panel {
    border-radius: 24px;
    border: 1px solid var(--about-line);
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    padding: 1rem 1rem;
}

.about-side-panel strong {
    display: block;
    color: var(--about-ink);
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.about-side-panel p,
.about-side-panel small {
    color: var(--about-muted);
    margin: 0.4rem 0 0;
    line-height: 1.7;
}

.about-empty {
    text-align: center;
    padding: 4rem 1.5rem;
}

.about-empty-icon {
    width: 92px;
    height: 92px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(245, 158, 11, 0.10));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--about-accent);
    margin-bottom: 1.2rem;
}

@media (max-width: 991.98px) {
    .about-side-card {
        position: static;
    }

    .about-title {
        max-width: none;
    }
}








.blog-shell {
    --blog-ink: #122033;
    --blog-muted: #6b7280;
    --blog-line: rgba(15, 23, 42, 0.08);
    --blog-accent: #0d6efd;
    --blog-warm: #f59e0b;
}

.blog-hero {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.12), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f7faff 52%, #eef4ff 100%);
    border: 1px solid var(--blog-line);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    margin-bottom: 1.5rem;
}

.blog-hero::before,
.blog-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.blog-hero::before {
    width: 240px;
    height: 240px;
    top: -80px;
    right: -60px;
    background: rgba(13, 110, 253, 0.08);
}

.blog-hero::after {
    width: 170px;
    height: 170px;
    left: -30px;
    bottom: -60px;
    background: rgba(245, 158, 11, 0.08);
}

.blog-hero-inner {
    position: relative;
    z-index: 1;
    padding: 2.25rem;
}

.blog-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--blog-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-title {
    margin: 1rem 0 0.75rem;
    font-size: clamp(2.1rem, 4vw, 3.8rem);
    line-height: 0.93;
    letter-spacing: -0.05em;
    color: var(--blog-ink);
    font-weight: 900;
}

.blog-lead {
    margin: 0;
    max-width: 58ch;
    color: var(--blog-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.5rem;
}

.blog-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--blog-ink);
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.blog-list {
    display: grid;
    gap: 1.15rem;
}

.blog-post {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--blog-line);
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 56px rgba(15, 23, 42, 0.11);
}

.blog-post-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    min-height: 240px;
}

.blog-post-media {
    position: relative;
    overflow: hidden;
    background: #eaf1fb;
}

.blog-post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.blog-post:hover .blog-post-media img {
    transform: scale(1.06);
}

.blog-post-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent 50%);
}

.blog-post-body {
    display: flex;
    flex-direction: column;
    padding: 1.4rem 1.5rem;
}

.blog-post-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 0.8rem;
}

.blog-post-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--blog-accent);
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.blog-post-category:hover {
    color: var(--blog-accent);
    background: rgba(13, 110, 253, 0.14);
}

.blog-post-title {
    margin: 0;
    color: var(--blog-ink);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.blog-post-title a {
    color: inherit;
    text-decoration: none;
}

.blog-post-title a:hover {
    color: var(--blog-accent);
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--blog-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.blog-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.blog-post-text {
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.8;
    margin: 0 0 1.2rem;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d6efd 0%, #1e78ff 100%);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(13, 110, 253, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-read-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(13, 110, 253, 0.28);
}

.blog-comment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blog-muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.blog-empty {
    border-radius: 30px;
    border: 1px solid var(--blog-line);
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
    padding: 3.5rem 1.5rem;
    text-align: center;
}

.blog-empty-icon {
    width: 92px;
    height: 92px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(245, 158, 11, 0.08));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blog-accent);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.blog-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-page-link {
    min-width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    color: var(--blog-ink);
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: all 0.25s ease;
}

.blog-page-link:hover,
.blog-page-link.is-active {
    background: var(--blog-accent);
    color: #fff;
    border-color: var(--blog-accent);
}

@media (max-width: 991.98px) {
    .blog-post-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-media {
        min-height: 240px;
    }
}








.category-shell {
    --category-ink: #122033;
    --category-muted: #6b7280;
    --category-line: rgba(15, 23, 42, 0.08);
    --category-accent: #0d6efd;
    --category-warm: #f59e0b;
}

.category-hero {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.12), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f7faff 52%, #eef4ff 100%);
    border: 1px solid var(--category-line);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    margin-bottom: 1.5rem;
}

.category-hero::before,
.category-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.category-hero::before {
    width: 240px;
    height: 240px;
    top: -80px;
    right: -60px;
    background: rgba(13, 110, 253, 0.08);
}

.category-hero::after {
    width: 170px;
    height: 170px;
    left: -30px;
    bottom: -60px;
    background: rgba(245, 158, 11, 0.08);
}

.category-hero-inner {
    position: relative;
    z-index: 1;
    padding: 2.25rem;
}

.category-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--category-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-title {
    margin: 1rem 0 0.75rem;
    font-size: clamp(2.1rem, 4vw, 3.8rem);
    line-height: 0.93;
    letter-spacing: -0.05em;
    color: var(--category-ink);
    font-weight: 900;
    max-width: 12ch;
}

.category-lead {
    margin: 0;
    max-width: 58ch;
    color: var(--category-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.category-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.5rem;
}

.category-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--category-ink);
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.category-list {
    display: grid;
    gap: 1.15rem;
}

.category-post {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--category-line);
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-post:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 56px rgba(15, 23, 42, 0.11);
}

.category-post-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    min-height: 240px;
}

.category-post-media {
    position: relative;
    overflow: hidden;
    background: #eaf1fb;
}

.category-post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.category-post:hover .category-post-media img {
    transform: scale(1.06);
}

.category-post-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent 50%);
}

.category-post-body {
    display: flex;
    flex-direction: column;
    padding: 1.4rem 1.5rem;
}

.category-post-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--category-accent);
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 0.9rem;
}

.category-post-title {
    margin: 0;
    color: var(--category-ink);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.category-post-title a {
    color: inherit;
    text-decoration: none;
}

.category-post-title a:hover {
    color: var(--category-accent);
}

.category-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--category-muted);
    font-size: 0.85rem;
    margin: 0.9rem 0 1rem;
}

.category-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.category-post-text {
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.8;
    margin: 0 0 1.2rem;
}

.category-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.category-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d6efd 0%, #1e78ff 100%);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(13, 110, 253, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-read-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(13, 110, 253, 0.28);
}

.category-comment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--category-muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.category-empty {
    border-radius: 30px;
    border: 1px solid var(--category-line);
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
    padding: 3.5rem 1.5rem;
    text-align: center;
}

.category-empty-icon {
    width: 92px;
    height: 92px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(245, 158, 11, 0.08));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--category-accent);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.category-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.category-page-link {
    min-width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    color: var(--category-ink);
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: all 0.25s ease;
    padding: 0 16px;
}

.category-page-link:hover,
.category-page-link.is-active {
    background: var(--category-accent);
    color: #fff;
    border-color: var(--category-accent);
}

@media (max-width: 991.98px) {
    .category-post-grid {
        grid-template-columns: 1fr;
    }

    .category-post-media {
        min-height: 240px;
    }

    .category-title {
        max-width: none;
    }
}









.post-shell {
    --post-ink: #122033;
    --post-muted: #6b7280;
    --post-line: rgba(15, 23, 42, 0.08);
    --post-accent: #0d6efd;
    --post-warm: #f59e0b;
}

.post-hero {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.12), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f7faff 52%, #eef4ff 100%);
    border: 1px solid var(--post-line);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    margin-bottom: 1.5rem;
}

.post-hero::before,
.post-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.post-hero::before {
    width: 240px;
    height: 240px;
    top: -80px;
    right: -60px;
    background: rgba(13, 110, 253, 0.08);
}

.post-hero::after {
    width: 170px;
    height: 170px;
    left: -30px;
    bottom: -60px;
    background: rgba(245, 158, 11, 0.08);
}

.post-hero-inner {
    position: relative;
    z-index: 1;
    padding: 2.25rem;
}

.post-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--post-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.post-title {
    margin: 1rem 0 0.75rem;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    color: var(--post-ink);
    font-weight: 900;
    max-width: 14ch;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.35rem;
}

.post-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--post-ink);
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.post-article {
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--post-line);
    background: #fff;
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.07);
    margin-bottom: 1.5rem;
}

.post-cover {
    position: relative;
    overflow: hidden;
    background: #eaf1fb;
}

.post-cover img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.post-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.28), transparent 46%);
}

.post-content-wrap {
    padding: 2rem;
}

.post-player-box {
    border-radius: 26px;
    overflow: hidden;
    background: #0f172a;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.post-content {
    color: #334155;
    line-height: 1.95;
    font-size: 1.04rem;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
    color: var(--post-ink);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.post-content p {
    margin-bottom: 1rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 22px;
    margin: 1rem 0;
}

.post-content iframe {
    max-width: 100%;
    border: 0;
    border-radius: 20px;
}

.post-content blockquote {
    margin: 1.3rem 0;
    padding: 1rem 1.2rem;
    border-left: 4px solid var(--post-accent);
    background: #f8fbff;
    border-radius: 0 18px 18px 0;
}

.post-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 1.8rem 0 1.25rem;
}

.post-action-btn {
    border-radius: 999px;
    padding: 0.95rem 1.2rem;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.post-share {
    border-radius: 26px;
    padding: 1.2rem 1.2rem;
    border: 1px solid var(--post-line);
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.post-comments {
    border-radius: 32px;
    border: 1px solid var(--post-line);
    background: #fff;
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.07);
    padding: 1.8rem;
}

.post-comments-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.post-comment-card {
    display: flex;
    gap: 14px;
    padding: 1rem;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.post-comment-card + .post-comment-card {
    margin-top: 1rem;
}

.post-comment-avatar {
    flex-shrink: 0;
}

.post-comment-body {
    flex: 1;
}

.post-comment-text {
    color: #475569;
    margin-top: 0.35rem;
    line-height: 1.75;
}

.post-comment-form {
    margin-top: 1.5rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.post-user-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(255,255,255,1));
    border: 1px solid rgba(13, 110, 253, 0.12);
    border-radius: 22px;
    padding: 0.95rem 1rem;
}

.post-user-pill i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #fff;
}

.post-input,
.post-textarea {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: linear-gradient(180deg, #fbfdff 0%, #f8fbff 100%);
    border-radius: 18px;
    color: var(--post-ink);
    padding: 0.95rem 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.post-input:focus,
.post-textarea:focus {
    outline: none;
    border-color: rgba(13, 110, 253, 0.45);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.10);
    background: #fff;
}

.post-textarea {
    min-height: 130px;
    resize: vertical;
}

.post-captcha-box {
    border-radius: 22px;
    border: 1px dashed rgba(13, 110, 253, 0.22);
    background: #f8fbff;
    padding: 1rem;
}

.post-login-box {
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #fafcff 100%);
    border: 1px dashed rgba(15, 23, 42, 0.14);
    padding: 1.5rem;
    text-align: center;
}

.post-related {
  border-radius: 32px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.07);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}

.post-related-card {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.1);
}

.post-related-image-link {
  display: block;
  overflow: hidden;
}

.post-related-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.post-related-card:hover .post-related-image {
  transform: scale(1.05);
}

.post-related-body {
  padding: 1rem 1rem 1.1rem;
}

.post-related-title {
  margin: 0 0 0.7rem;
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.post-related-title a {
  color: #122033;
  text-decoration: none;
}

.post-related-title a:hover {
  color: #0d6efd;
}

.post-related-text {
  color: #6b7280;
  line-height: 1.75;
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

.post-related-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0d6efd;
  font-weight: 800;
  text-decoration: none;
}

.post-related-link:hover {
  color: #0b5ed7;
}

@media (max-width: 991.98px) {
    .post-title {
        max-width: none;
    }

    .post-cover img {
        height: 320px;
    }
}






.core-adminbar {
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.core-adminbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.core-adminbar-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.core-adminbar-link:hover {
  color: #fff;
}

.core-adminbar-brand {
  color: #fff;
}

.core-adminbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.core-header {
  padding: 14px 0 0;
}

.core-header-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.1), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(246,250,255,0.96) 52%, rgba(238,244,255,0.96) 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(10px);
}

.core-header-shell::before,
.core-header-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.core-header-shell::before {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -70px;
  background: rgba(13, 110, 253, 0.07);
}

.core-header-shell::after {
  width: 150px;
  height: 150px;
  left: -40px;
  bottom: -70px;
  background: rgba(245, 158, 11, 0.07);
}

.core-brand-block,
.core-header-search,
.core-header-meta {
  position: relative;
  z-index: 1;
}

.core-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.core-brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d6efd 0%, #1d78ff 100%);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 16px 30px rgba(13, 110, 253, 0.24);
}

.core-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.core-brand-copy strong {
  color: #122033;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.core-brand-copy small {
  color: #6b7280;
  font-size: 0.82rem;
  max-width: 48ch;
}

.core-header-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.core-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #122033;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.core-search-form {
  display: flex;
  align-items: center;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 8px 0 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.core-search-form input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #122033;
  font-size: 0.92rem;
  min-width: 0;
}

.core-search-form input::placeholder {
  color: #94a3b8;
}

.core-search-form button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #0d6efd;
  color: #fff;
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.core-search-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(13, 110, 253, 0.28);
}

.core-search-icon {
  color: #94a3b8;
  margin-right: 10px;
}

.core-search-form--sidebar {
  min-height: 58px;
  padding-left: 16px;
}

.core-nav {
  margin-top: 12px;
  margin-bottom: 6px;
  background: transparent !important;
  box-shadow: none !important;
}

.core-nav-shell {
  padding: 10px 16px;
  border-radius: 24px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
}

.core-nav-item {
  margin-right: 4px;
}

.core-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px !important;
  border-radius: 999px;
  color: #334155 !important;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.core-nav-link:hover,
.core-nav-link.active {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd !important;
}

.core-nav-dropdown {
  margin-top: 10px !important;
  border-radius: 20px;
  padding: 10px;
  min-width: 240px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12) !important;
}

.core-nav-dropdown .dropdown-item {
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 600;
  color: #334155;
}

.core-nav-dropdown .dropdown-item:hover,
.core-nav-dropdown .dropdown-item.active {
  background: rgba(13, 110, 253, 0.08);
  color: #0d6efd;
}

.core-lang-toggle,
.core-profile-toggle {
  min-height: 44px;
  padding: 0 12px !important;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #122033 !important;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.core-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, #0d6efd 0%, #1e78ff 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(13, 110, 253, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.core-auth-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(13, 110, 253, 0.28);
}

.core-latest-bar {
  margin-top: 10px;
}

.core-latest-shell {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.core-latest-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.core-latest-track {
  flex: 1;
  min-width: 0;
}

.core-latest-link {
  color: #334155;
  text-decoration: none;
  margin-right: 28px;
  font-weight: 700;
}

.core-latest-link:hover {
  color: #0d6efd;
}

.core-widget {
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.core-widget + .core-widget {
  margin-top: 1rem;
}

.core-widget-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.2rem 1.25rem 0.9rem;
}

.core-widget-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  flex-shrink: 0;
}

.core-widget-head-title {
  margin: 0;
  color: #122033;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.core-widget-head-sub {
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.core-widget-body {
  padding: 1.25rem;
}

.core-widget-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.8rem;
}

.core-widget-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #0d6efd;
  flex-shrink: 0;
}

.core-widget-title {
  margin: 0;
  color: #122033;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.core-widget-content {
  color: #4b5563;
  line-height: 1.85;
  font-size: 0.95rem;
}

.core-header-widget .core-widget-body {
  padding: 1.5rem;
}

.core-sidebar-stack {
  display: grid;
  gap: 1rem;
}

.core-search-card .core-widget-body {
  padding: 1rem;
}

.core-category-list {
  display: grid;
  gap: 10px;
}

.core-category-item {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 12px;
  border-radius: 20px;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.core-category-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
  border-color: rgba(13, 110, 253, 0.16);
}

.core-category-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  color: #0d6efd;
}

.core-category-name {
  color: #122033;
  font-weight: 700;
  font-size: 0.94rem;
}

.core-category-count {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.08);
  color: #0d6efd;
  font-weight: 800;
  font-size: 0.76rem;
}

.core-tabs-wrap {
  padding: 1rem 1rem 0;
}

.core-side-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px;
  background: #f8fafc;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.core-side-tabs .nav-link {
  border-radius: 999px;
  min-height: 42px;
  color: #64748b;
  font-weight: 800;
  font-size: 0.82rem;
  border: 0;
}

.core-side-tabs .nav-link.active {
  background: #fff;
  color: #122033;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.07);
}

.core-mini-post {
  display: flex;
  gap: 12px;
}

.core-mini-post + .core-mini-post {
  margin-top: 1rem;
}

.core-mini-post-image {
  flex-shrink: 0;
  display: block;
}

.core-mini-post-image img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.core-mini-post-body {
  flex: 1;
  min-width: 0;
}

.core-mini-post-body h6 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 800;
}

.core-mini-post-body h6 a {
  color: #122033;
  text-decoration: none;
}

.core-mini-post-body h6 a:hover {
  color: #0d6efd;
}

.core-mini-post-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #94a3b8;
  font-size: 0.76rem;
  font-weight: 700;
}

.core-mini-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.core-mini-comment {
  display: flex;
  gap: 12px;
}

.core-mini-comment + .core-mini-comment {
  margin-top: 1rem;
}

.core-mini-comment-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  color: #0d6efd;
  font-size: 1.1rem;
}

.core-mini-comment-body p {
  margin: 0 0 6px;
  color: #334155;
  line-height: 1.65;
  font-size: 0.9rem;
}

.core-mini-comment-body small {
  color: #94a3b8;
  font-weight: 700;
}

.core-newsletter-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d6efd 0%, #1d78ff 100%);
  color: #fff;
}

.core-newsletter-card::before {
  content: "";
  position: absolute;
  right: -26px;
  top: -18px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.core-newsletter-card .core-widget-body {
  position: relative;
  z-index: 1;
}

.core-newsletter-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.core-newsletter-card h5 {
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.core-newsletter-card p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.core-newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.core-newsletter-form input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #122033;
  padding: 0 14px;
  min-width: 0;
}

.core-newsletter-form button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: #fff;
}

@media (max-width: 1199.98px) {
  .core-header-shell {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  }

  .core-header-meta {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .core-header-shell {
    grid-template-columns: 1fr;
  }

  .core-header-search {
    width: 100%;
  }

  .core-adminbar-inner,
  .core-latest-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .core-adminbar-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .core-nav-shell {
    padding: 12px;
  }
}

@media (max-width: 767.98px) {
  .core-header-shell {
    padding: 16px;
    border-radius: 24px;
  }

  .core-brand-copy strong {
    font-size: 1rem;
  }

  .core-widget,
  .core-nav-shell,
  .core-latest-shell {
    border-radius: 22px;
  }
}






.error-shell {
  --error-ink: #122033;
  --error-muted: #6b7280;
  --error-line: rgba(15, 23, 42, 0.08);
  --error-accent: #0d6efd;
  --error-warm: #f59e0b;
}

.error-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7faff 52%, #eef4ff 100%);
  border: 1px solid var(--error-line);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.error-hero::before,
.error-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.error-hero::before {
  width: 240px;
  height: 240px;
  top: -80px;
  right: -60px;
  background: rgba(13, 110, 253, 0.08);
}

.error-hero::after {
  width: 170px;
  height: 170px;
  left: -30px;
  bottom: -60px;
  background: rgba(245, 158, 11, 0.08);
}

.error-hero-inner {
  position: relative;
  z-index: 1;
  padding: 3rem 1.75rem;
}

.error-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--error-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.error-symbol-wrap {
  position: relative;
  margin: 1.6rem 0 1.1rem;
}

.error-symbol-glow {
  width: 180px;
  height: 180px;
  border-radius: 999px;
  margin: 0 auto;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.16) 0%, rgba(13, 110, 253, 0) 72%);
  filter: blur(12px);
}

.error-symbol {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  color: var(--error-accent);
  text-shadow: 0 12px 30px rgba(13, 110, 253, 0.18);
}

.error-title {
  margin: 0 0 0.85rem;
  color: var(--error-ink);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.error-lead {
  margin: 0 auto;
  max-width: 56ch;
  color: var(--error-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.error-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.7rem;
}

.error-primary-btn,
.error-secondary-btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.error-primary-btn {
  background: linear-gradient(135deg, #0d6efd 0%, #1e78ff 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(13, 110, 253, 0.22);
}

.error-primary-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(13, 110, 253, 0.3);
}

.error-secondary-btn {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #334155;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.error-secondary-btn:hover {
  color: #0d6efd;
  transform: translateY(-2px);
}

.error-search-card {
  margin-top: 1.4rem;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  padding: 1.5rem;
}

.error-search-head {
  text-align: center;
  margin-bottom: 1rem;
}

.error-search-form {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 0 8px 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fbfdff 0%, #f8fbff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.error-search-icon {
  color: #94a3b8;
  margin-right: 10px;
}

.error-search-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #122033;
  font-size: 0.95rem;
}

.error-search-form input::placeholder {
  color: #94a3b8;
}

.error-search-form button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  box-shadow: 0 12px 22px rgba(17, 24, 39, 0.16);
}

@media (max-width: 767.98px) {
  .error-hero-inner {
    padding: 2.25rem 1.2rem;
  }

  .error-search-card {
    padding: 1.15rem;
  }

  .error-actions {
    flex-direction: column;
  }

  .error-primary-btn,
  .error-secondary-btn {
    width: 100%;
  }
}






.search-shell {
  --search-ink: #122033;
  --search-muted: #6b7280;
  --search-line: rgba(15, 23, 42, 0.08);
  --search-accent: #0d6efd;
  --search-warm: #f59e0b;
}

.search-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7faff 52%, #eef4ff 100%);
  border: 1px solid var(--search-line);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.5rem;
}

.search-hero::before,
.search-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.search-hero::before {
  width: 240px;
  height: 240px;
  top: -80px;
  right: -60px;
  background: rgba(13, 110, 253, 0.08);
}

.search-hero::after {
  width: 170px;
  height: 170px;
  left: -30px;
  bottom: -60px;
  background: rgba(245, 158, 11, 0.08);
}

.search-hero-inner {
  position: relative;
  z-index: 1;
  padding: 2.25rem;
}

.search-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--search-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-title {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
  color: var(--search-ink);
  font-weight: 900;
}

.search-lead {
  margin: 0;
  max-width: 58ch;
  color: var(--search-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.search-query-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--search-ink);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.search-results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 1rem;
}

.search-results-title {
  margin: 0;
  color: var(--search-ink);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.search-results-sub {
  margin: 0.35rem 0 0;
  color: var(--search-muted);
}

.search-result-card {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--search-line);
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-result-card + .search-result-card {
  margin-top: 1rem;
}

.search-result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.1);
}

.search-result-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 220px;
}

.search-result-media {
  position: relative;
  overflow: hidden;
  background: #eaf1fb;
}

.search-result-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.search-result-card:hover .search-result-image {
  transform: scale(1.06);
}

.search-result-noimage {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 2rem;
  background: linear-gradient(135deg, #eef2f7, #dde5ef);
}

.search-result-body {
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-result-title {
  margin: 0 0 0.8rem;
  color: var(--search-ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.search-result-title small {
  line-height: 1.5;
}

.search-result-text {
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.8;
  margin: 0 0 1rem;
}

.search-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--search-muted);
  font-size: 0.85rem;
}

.search-result-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.search-empty {
  border-radius: 30px;
  border: 1px solid var(--search-line);
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.search-empty-icon {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(245, 158, 11, 0.08));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--search-accent);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.search-pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.search-page-link {
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  color: var(--search-ink);
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: all 0.25s ease;
}

.search-page-link:hover,
.search-page-link.is-active {
  background: var(--search-accent);
  color: #fff;
  border-color: var(--search-accent);
}

@media (max-width: 991.98px) {
  .search-result-grid {
    grid-template-columns: 1fr;
  }

  .search-result-media,
  .search-result-noimage {
    min-height: 220px;
  }
}






.auth-shell {
  --auth-ink: #122033;
  --auth-muted: #6b7280;
  --auth-line: rgba(15, 23, 42, 0.08);
  --auth-accent: #0d6efd;
  --auth-success: #198754;
  --auth-warm: #f59e0b;
}

.auth-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(25, 135, 84, 0.10), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7faff 52%, #eef4ff 100%);
  border: 1px solid var(--auth-line);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.5rem;
}

.auth-hero::before,
.auth-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.auth-hero::before {
  width: 240px;
  height: 240px;
  top: -80px;
  right: -60px;
  background: rgba(13, 110, 253, 0.08);
}

.auth-hero::after {
  width: 170px;
  height: 170px;
  left: -30px;
  bottom: -60px;
  background: rgba(25, 135, 84, 0.08);
}

.auth-hero-inner {
  position: relative;
  z-index: 1;
  padding: 2.25rem;
}

.auth-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--auth-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-title {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
  color: var(--auth-ink);
  font-weight: 900;
}

.auth-lead {
  margin: 0;
  max-width: 58ch;
  color: var(--auth-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.auth-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.auth-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--auth-ink);
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.auth-panel {
  border-radius: 32px;
  border: 1px solid var(--auth-line);
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.auth-panel-body {
  padding: 1.8rem;
}

.auth-grid {
  align-items: stretch;
}

.auth-card-box {
  height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
  padding: 1.4rem;
}

.auth-box-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.2rem;
}

.auth-box-head h3 {
  margin: 0;
  color: var(--auth-ink);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.auth-box-head p {
  margin: 0.25rem 0 0;
  color: var(--auth-muted);
  font-size: 0.86rem;
}

.auth-box-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.auth-box-icon.signin {
  background: rgba(13, 110, 253, 0.12);
  color: #0d6efd;
}

.auth-box-icon.register {
  background: rgba(25, 135, 84, 0.12);
  color: #198754;
}

.auth-form {
  display: grid;
  gap: 1rem;
}

.auth-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.auth-input {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: linear-gradient(180deg, #fbfdff 0%, #f8fbff 100%);
  color: var(--auth-ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.auth-input:focus {
  outline: none;
  border-color: rgba(13, 110, 253, 0.45);
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.10);
  background: #fff;
}

.auth-primary-btn,
.auth-secondary-btn,
.auth-refresh-btn,
.auth-light-btn {
  min-height: 52px;
  border-radius: 999px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.auth-primary-btn {
  width: 100%;
  background: linear-gradient(135deg, #0d6efd 0%, #1e78ff 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(13, 110, 253, 0.22);
}

.auth-primary-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.auth-secondary-btn {
  width: 100%;
  background: linear-gradient(135deg, #198754 0%, #20a264 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(25, 135, 84, 0.22);
}

.auth-secondary-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.auth-light-btn {
  padding: 0 20px;
  background: #fff;
  color: #334155;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.06);
}

.auth-light-btn:hover {
  color: #0d6efd;
}

.auth-consent {
  border-radius: 22px;
  border: 1px solid rgba(245, 158, 11, 0.16);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(255,255,255,0.96));
  padding: 1rem;
}

.auth-captcha {
  border-radius: 22px;
  border: 1px dashed rgba(13, 110, 253, 0.22);
  background: #f8fbff;
  padding: 1rem;
}

.auth-captcha-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0d6efd;
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(13, 110, 253, 0.18);
}

.auth-lock-state {
  padding: 2rem 1rem;
}

.auth-lock-icon {
  width: 90px;
  height: 90px;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(245, 158, 11, 0.08));
  color: #0d6efd;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.auth-lock-timer {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #0d6efd;
  margin: 1rem 0;
}

.auth-refresh-btn {
  padding: 0 20px;
  background: #fff;
  color: #334155;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.06);
}

.auth-closed-box {
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
  border: 1px dashed rgba(15, 23, 42, 0.12);
  padding: 2rem 1.25rem;
}

.auth-closed-icon {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .auth-title {
    max-width: none;
  }
}






.profile-shell {
  --profile-ink: #122033;
  --profile-muted: #6b7280;
  --profile-line: rgba(15, 23, 42, 0.08);
  --profile-accent: #0d6efd;
  --profile-warm: #f59e0b;
}

.profile-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7faff 52%, #eef4ff 100%);
  border: 1px solid var(--profile-line);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.5rem;
}

.profile-hero::before,
.profile-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.profile-hero::before {
  width: 240px;
  height: 240px;
  top: -80px;
  right: -60px;
  background: rgba(13, 110, 253, 0.08);
}

.profile-hero::after {
  width: 170px;
  height: 170px;
  left: -30px;
  bottom: -60px;
  background: rgba(245, 158, 11, 0.08);
}

.profile-hero-inner {
  position: relative;
  z-index: 1;
  padding: 2.25rem;
}

.profile-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--profile-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-title {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
  color: var(--profile-ink);
  font-weight: 900;
}

.profile-lead {
  margin: 0;
  max-width: 58ch;
  color: var(--profile-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.profile-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.profile-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--profile-ink);
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.profile-panel {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--profile-line);
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.07);
}

.profile-panel-cover {
  height: 150px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.15), transparent 24%),
    linear-gradient(135deg, #0d6efd 0%, #1d78ff 55%, #2c89ff 100%);
}

.profile-panel-body {
  padding: 0 1.75rem 1.75rem;
}

.profile-summary {
  margin-top: -58px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.profile-avatar-wrap {
  position: relative;
  width: 116px;
  height: 116px;
  flex-shrink: 0;
}

.profile-avatar {
  width: 116px;
  height: 116px;
  object-fit: cover;
  display: block;
  border-radius: 999px;
  border: 5px solid #fff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  background: #fff;
}

.profile-avatar-status {
  position: absolute;
  right: 6px;
  bottom: 8px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #22c55e;
  border: 3px solid #fff;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.14);
}

.profile-summary-copy h2 {
  margin: 0 0 0.35rem;
  color: var(--profile-ink);
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.profile-summary-copy p {
  margin: 0;
  color: var(--profile-muted);
  font-size: 0.95rem;
}

.profile-form {
  margin-top: 0.25rem;
}

.profile-field label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.profile-input-wrap {
  display: flex;
  align-items: center;
  min-height: 56px;
  border-radius: 20px;
  padding: 0 16px;
  background: linear-gradient(180deg, #fbfdff 0%, #f8fbff 100%);
  border: 1px solid rgba(148, 163, 184, 0.22);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.profile-input-wrap:focus-within {
  border-color: rgba(13, 110, 253, 0.45);
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.10);
  background: #fff;
}

.profile-input-wrap-white {
  background: #fff;
}

.profile-input-icon {
  color: #94a3b8;
  margin-right: 12px;
  font-size: 0.95rem;
}

.profile-input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--profile-ink);
  font-size: 0.96rem;
  padding: 0;
}

.profile-input::placeholder {
  color: #94a3b8;
}

.profile-upload-box,
.profile-password-box {
  border-radius: 26px;
  padding: 1.15rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.profile-password-box {
  border-color: rgba(245, 158, 11, 0.16);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(255,255,255,0.98));
}

.profile-upload-head,
.profile-password-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}

.profile-upload-head h4,
.profile-password-head h4 {
  margin: 0 0 0.25rem;
  color: var(--profile-ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.profile-upload-head p,
.profile-password-head p {
  margin: 0;
  color: var(--profile-muted);
  font-size: 0.85rem;
}

.profile-upload-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.profile-upload-icon.warning {
  background: rgba(245, 158, 11, 0.14);
  color: #f59e0b;
}

.profile-file-input {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px dashed rgba(13, 110, 253, 0.24);
  background: #f8fbff;
  color: #475569;
}

.profile-save-btn {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d6efd 0%, #1e78ff 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(13, 110, 253, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.profile-save-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(13, 110, 253, 0.28);
}

@media (max-width: 767.98px) {
  .profile-hero-inner {
    padding: 1.6rem;
  }

  .profile-panel-body {
    padding: 0 1rem 1.25rem;
  }

  .profile-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-avatar-wrap {
    width: 102px;
    height: 102px;
  }

  .profile-avatar {
    width: 102px;
    height: 102px;
  }
}





.favorite-shell {
  --favorite-ink: #122033;
  --favorite-muted: #6b7280;
  --favorite-line: rgba(15, 23, 42, 0.08);
  --favorite-accent: #0d6efd;
  --favorite-warm: #f59e0b;
}

.favorite-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(13, 110, 253, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fffaf1 44%, #f7faff 100%);
  border: 1px solid var(--favorite-line);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.5rem;
}

.favorite-hero::before,
.favorite-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.favorite-hero::before {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -60px;
  background: rgba(245, 158, 11, 0.08);
}

.favorite-hero::after {
  width: 170px;
  height: 170px;
  left: -30px;
  bottom: -60px;
  background: rgba(13, 110, 253, 0.08);
}

.favorite-hero-inner {
  position: relative;
  z-index: 1;
  padding: 2.25rem;
}

.favorite-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.10);
  color: #d97706;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.favorite-title {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
  color: var(--favorite-ink);
  font-weight: 900;
}

.favorite-lead {
  margin: 0;
  max-width: 58ch;
  color: var(--favorite-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.favorite-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.favorite-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--favorite-ink);
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.favorite-card {
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--favorite-line);
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.favorite-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.1);
}

.favorite-card-media {
  display: block;
  overflow: hidden;
  background: #eef2f7;
}

.favorite-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.favorite-card:hover .favorite-card-image {
  transform: scale(1.05);
}

.favorite-card-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.favorite-card-top {
  margin-bottom: 0.9rem;
}

.favorite-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.10);
  color: #d97706;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.favorite-card-title {
  margin: 0 0 0.75rem;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.favorite-card-title a {
  color: var(--favorite-ink);
  text-decoration: none;
}

.favorite-card-title a:hover {
  color: var(--favorite-accent);
}

.favorite-card-text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0 0 1.25rem;
}

.favorite-card-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.favorite-remove-btn {
  border: 0;
  background: transparent;
  color: #dc2626;
  padding: 0;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.favorite-remove-btn.processing {
  opacity: 0.75;
  pointer-events: none;
}

.favorite-read-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.20);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.favorite-read-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(245, 158, 11, 0.28);
}

.favorite-empty {
  border-radius: 30px;
  border: 1px solid var(--favorite-line);
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.favorite-empty-icon {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.10), rgba(13, 110, 253, 0.08));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d97706;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.favorite-empty-btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, #0d6efd 0%, #1e78ff 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(13, 110, 253, 0.20);
}

.favorite-empty-btn:hover {
  color: #fff;
}

.favorite-card-exit {
  animation: favoriteSlideFade 0.45s ease forwards;
}

@keyframes favoriteSlideFade {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-80px);
    opacity: 0;
  }
}

@media (max-width: 767.98px) {
  .favorite-hero-inner {
    padding: 1.6rem;
  }

  .favorite-card-image {
    height: 210px;
  }

  .favorite-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .favorite-read-btn {
    justify-content: center;
  }
}





.liked-shell {
  --liked-ink: #122033;
  --liked-muted: #6b7280;
  --liked-line: rgba(15, 23, 42, 0.08);
  --liked-accent: #dc2626;
  --liked-blue: #0d6efd;
  --liked-warm: #f59e0b;
}

.liked-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(220, 38, 38, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.10), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fff5f5 46%, #f8fbff 100%);
  border: 1px solid var(--liked-line);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.5rem;
}

.liked-hero::before,
.liked-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.liked-hero::before {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -60px;
  background: rgba(220, 38, 38, 0.08);
}

.liked-hero::after {
  width: 170px;
  height: 170px;
  left: -30px;
  bottom: -60px;
  background: rgba(13, 110, 253, 0.06);
}

.liked-hero-inner {
  position: relative;
  z-index: 1;
  padding: 2.25rem;
}

.liked-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.10);
  color: var(--liked-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.liked-title {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
  color: var(--liked-ink);
  font-weight: 900;
}

.liked-lead {
  margin: 0;
  max-width: 58ch;
  color: var(--liked-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.liked-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.liked-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--liked-ink);
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.liked-card {
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--liked-line);
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.liked-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.1);
}

.liked-card-media {
  display: block;
  overflow: hidden;
  background: #eef2f7;
}

.liked-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.liked-card:hover .liked-card-image {
  transform: scale(1.05);
}

.liked-card-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.liked-card-top {
  margin-bottom: 0.9rem;
}

.liked-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.10);
  color: var(--liked-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.liked-card-title {
  margin: 0 0 0.75rem;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.liked-card-title a {
  color: var(--liked-ink);
  text-decoration: none;
}

.liked-card-title a:hover {
  color: var(--liked-blue);
}

.liked-card-text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0 0 1.25rem;
}

.liked-card-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.liked-remove-btn {
  border: 0;
  background: transparent;
  color: var(--liked-accent);
  padding: 0;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.liked-remove-btn.processing {
  opacity: 0.75;
  pointer-events: none;
}

.liked-read-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #fff;
  color: var(--liked-ink);
  font-weight: 800;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.liked-read-btn:hover {
  color: var(--liked-blue);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.liked-empty {
  border-radius: 30px;
  border: 1px solid var(--liked-line);
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.liked-empty-icon {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.10), rgba(245, 158, 11, 0.08));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--liked-accent);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.liked-empty-btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, #0d6efd 0%, #1e78ff 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(13, 110, 253, 0.20);
}

.liked-empty-btn:hover {
  color: #fff;
}

.liked-card-exit {
  animation: likedSlideFade 0.45s ease forwards;
}

@keyframes likedSlideFade {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-80px);
    opacity: 0;
  }
}

@media (max-width: 767.98px) {
  .liked-hero-inner {
    padding: 1.6rem;
  }

  .liked-card-image {
    height: 210px;
  }

  .liked-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .liked-read-btn {
    justify-content: center;
  }
}






.liked-shell {
  --liked-ink: #122033;
  --liked-muted: #6b7280;
  --liked-line: rgba(15, 23, 42, 0.08);
  --liked-accent: #dc2626;
  --liked-blue: #0d6efd;
  --liked-warm: #f59e0b;
}

.liked-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(220, 38, 38, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.10), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fff5f5 46%, #f8fbff 100%);
  border: 1px solid var(--liked-line);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.5rem;
}

.liked-hero::before,
.liked-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.liked-hero::before {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -60px;
  background: rgba(220, 38, 38, 0.08);
}

.liked-hero::after {
  width: 170px;
  height: 170px;
  left: -30px;
  bottom: -60px;
  background: rgba(13, 110, 253, 0.06);
}

.liked-hero-inner {
  position: relative;
  z-index: 1;
  padding: 2.25rem;
}

.liked-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.10);
  color: var(--liked-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.liked-title {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
  color: var(--liked-ink);
  font-weight: 900;
}

.liked-lead {
  margin: 0;
  max-width: 58ch;
  color: var(--liked-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.liked-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.liked-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--liked-ink);
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.liked-card {
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--liked-line);
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.liked-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.1);
}

.liked-card-media {
  display: block;
  overflow: hidden;
  background: #eef2f7;
}

.liked-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.liked-card:hover .liked-card-image {
  transform: scale(1.05);
}

.liked-card-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.liked-card-top {
  margin-bottom: 0.9rem;
}

.liked-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.10);
  color: var(--liked-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.liked-card-title {
  margin: 0 0 0.75rem;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.liked-card-title a {
  color: var(--liked-ink);
  text-decoration: none;
}

.liked-card-title a:hover {
  color: var(--liked-blue);
}

.liked-card-text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0 0 1.25rem;
}

.liked-card-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.liked-remove-btn {
  border: 0;
  background: transparent;
  color: var(--liked-accent);
  padding: 0;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.liked-remove-btn.processing {
  opacity: 0.75;
  pointer-events: none;
}

.liked-read-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #fff;
  color: var(--liked-ink);
  font-weight: 800;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.liked-read-btn:hover {
  color: var(--liked-blue);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.liked-empty {
  border-radius: 30px;
  border: 1px solid var(--liked-line);
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.liked-empty-icon {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.10), rgba(245, 158, 11, 0.08));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--liked-accent);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.liked-empty-btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, #0d6efd 0%, #1e78ff 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(13, 110, 253, 0.20);
}

.liked-empty-btn:hover {
  color: #fff;
}

.liked-card-exit {
  animation: likedSlideFade 0.45s ease forwards;
}

@keyframes likedSlideFade {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-80px);
    opacity: 0;
  }
}

@media (max-width: 767.98px) {
  .liked-hero-inner {
    padding: 1.6rem;
  }

  .liked-card-image {
    height: 210px;
  }

  .liked-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .liked-read-btn {
    justify-content: center;
  }
}







.mycomments-shell {
  display: grid;
  gap: 24px;
}

.mycomments-hero {
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.mycomments-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.10);
  color: #0d6efd;
  font-size: 0.78rem;
  font-weight: 800;
}

.mycomments-title {
  margin: 14px 0 8px;
  color: #122033;
  font-size: clamp(1.9rem, 2vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.mycomments-lead {
  max-width: 760px;
  margin: 0;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.65;
}

.mycomments-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.mycomments-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  font-size: 0.78rem;
  font-weight: 800;
}

.mycomments-card {
  height: 100%;
  padding: 22px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mycomments-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.mycomments-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.mycomments-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
}

.mycomments-badge.is-approved {
  background: rgba(25, 135, 84, 0.10);
  color: #198754;
}

.mycomments-badge.is-pending {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.mycomments-menu-btn {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mycomments-thumb-link {
  display: block;
  margin-bottom: 16px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.mycomments-thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.mycomments-card:hover .mycomments-thumb {
  transform: scale(1.03);
}

.mycomments-postline small {
  display: block;
  margin-bottom: 6px;
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mycomments-postline h3 {
  margin: 0 0 14px;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.mycomments-postline h3 a {
  color: #122033;
  text-decoration: none;
}

.mycomments-textbox {
  min-height: 112px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.mycomments-edit {
  margin-bottom: 16px;
}

.mycomments-textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #fff;
  color: #122033;
  resize: vertical;
  outline: none;
}

.mycomments-textarea:focus {
  border-color: rgba(13, 110, 253, 0.35);
  box-shadow: 0 0 0 0.22rem rgba(13, 110, 253, 0.10);
}

.mycomments-edit-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.mycomments-save-btn,
.mycomments-cancel-btn,
.mycomments-read-btn,
.mycomments-outline-btn,
.mycomments-danger-btn,
.mycomments-empty-btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
}

.mycomments-save-btn,
.mycomments-read-btn,
.mycomments-empty-btn {
  border: 0;
  background: #0d6efd;
  color: #fff;
  box-shadow: 0 12px 24px rgba(13, 110, 253, 0.16);
}

.mycomments-cancel-btn,
.mycomments-outline-btn {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  color: #334155;
}

.mycomments-danger-btn {
  border: 0;
  background: rgba(220, 53, 69, 0.10);
  color: #dc3545;
}

.mycomments-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 700;
}

.mycomments-footer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mycomments-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mycomments-empty {
  padding: 56px 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
  text-align: center;
}

.mycomments-empty-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.10);
  color: #0d6efd;
  font-size: 2rem;
}

@media (max-width: 767.98px) {
  .mycomments-hero {
    padding: 20px;
    border-radius: 24px;
  }

  .mycomments-card {
    padding: 18px;
    border-radius: 22px;
  }

  .mycomments-thumb {
    height: 170px;
  }

  .mycomments-actions,
  .mycomments-edit-actions {
    flex-direction: column;
  }

  .mycomments-save-btn,
  .mycomments-cancel-btn,
  .mycomments-read-btn,
  .mycomments-outline-btn,
  .mycomments-danger-btn,
  .mycomments-empty-btn {
    width: 100%;
  }
}









.page-shell {
  --page-ink: #122033;
  --page-muted: #6b7280;
  --page-line: rgba(15, 23, 42, 0.08);
  --page-accent: #0d6efd;
  --page-warm: #f59e0b;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7faff 52%, #eef4ff 100%);
  border: 1px solid var(--page-line);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.5rem;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.page-hero::before {
  width: 240px;
  height: 240px;
  top: -80px;
  right: -60px;
  background: rgba(13, 110, 253, 0.08);
}

.page-hero::after {
  width: 170px;
  height: 170px;
  left: -30px;
  bottom: -60px;
  background: rgba(245, 158, 11, 0.08);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 2.25rem;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--page-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-title {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
  color: var(--page-ink);
  font-weight: 900;
}

.page-lead {
  margin: 0;
  max-width: 58ch;
  color: var(--page-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.page-article {
  border-radius: 32px;
  border: 1px solid var(--page-line);
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.page-article-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.5rem 1.5rem 0;
}

.page-article-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d6efd 0%, #f59e0b 100%);
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(13, 110, 253, 0.18);
}

.page-article-head h2 {
  margin: 0;
  color: var(--page-ink);
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.page-content {
  padding: 1.5rem;
  color: #475569;
  line-height: 1.95;
  font-size: 1rem;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  color: var(--page-ink);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 800;
  margin-top: 1.4em;
  margin-bottom: 0.7em;
}

.page-content h1 {
  font-size: 2rem;
}

.page-content h2 {
  font-size: 1.65rem;
}

.page-content h3 {
  font-size: 1.35rem;
}

.page-content p {
  margin-bottom: 1.1rem;
}

.page-content a {
  color: var(--page-accent);
  text-decoration: none;
  font-weight: 700;
}

.page-content a:hover {
  text-decoration: underline;
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin: 1rem 0;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.page-content blockquote {
  margin: 1.4rem 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid #0d6efd;
  border-radius: 0 18px 18px 0;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.06), rgba(245, 158, 11, 0.04));
  color: #334155;
}

.page-content ul,
.page-content ol {
  padding-left: 1.2rem;
  margin-bottom: 1.1rem;
}

.page-content li {
  margin-bottom: 0.45rem;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.page-content table th,
.page-content table td {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  text-align: left;
}

.page-content table th {
  background: #f8fbff;
  color: var(--page-ink);
  font-weight: 800;
}

@media (max-width: 767.98px) {
  .page-hero-inner {
    padding: 1.6rem;
  }

  .page-article-head,
  .page-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}







.home-section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.home-section-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-section-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 14px 24px rgba(13, 110, 253, 0.22);
}

.home-section-title {
  color: #122033;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.home-section-sub {
  color: #6b7280;
  font-size: 0.85rem;
}

.home-featured-slider {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  min-height: 520px;
}

.home-featured-slide {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.home-featured-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.home-featured-slide:hover .home-featured-slide-image {
  transform: scale(1.04);
}

.home-featured-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.home-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.home-featured-slide-title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
  max-width: 12ch;
}

.home-featured-side-card {
  position: relative;
  min-height: 248px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.home-featured-side-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-featured-side-card:hover .home-featured-side-image {
  transform: scale(1.05);
}

.home-featured-side-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 72%);
}

.home-featured-side-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1rem;
}

.home-featured-side-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.home-post-card-2 {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-post-card-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.1);
}

.home-post-card-media {
  position: relative;
  overflow: hidden;
  background: #eef2f7;
}

.home-post-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.home-post-card-2:hover .home-post-card-image {
  transform: scale(1.05);
}

.home-post-card-time {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #122033;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.home-post-card-body {
  padding: 1rem 1rem 0.8rem;
}

.home-post-card-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.home-post-card-category-line {
  width: 3px;
  height: 12px;
  border-radius: 999px;
  background: #0d6efd;
  flex-shrink: 0;
}

.home-post-card-category a {
  text-decoration: none;
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-post-card-category a:hover {
  color: #0d6efd;
}

.home-post-card-title-link {
  color: #122033;
  text-decoration: none;
  line-height: 1.35;
}

.home-post-card-title-link:hover {
  color: #0d6efd;
}

.home-post-card-text {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.home-post-card-footer {
  padding: 0 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-post-card-date {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 700;
}

.home-post-card-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.home-post-card-arrow:hover {
  transform: translateX(2px);
  background: rgba(13, 110, 253, 0.16);
  color: #0d6efd;
}

.home-view-all-btn {
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #111827;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(17, 24, 39, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-view-all-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(17, 24, 39, 0.2);
}

@media (max-width: 991.98px) {
  .home-featured-slider,
  .home-featured-slide {
    min-height: 400px;
  }

  .home-featured-side-card {
    min-height: 220px;
  }
}

@media (max-width: 767.98px) {
  .home-section-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-featured-slider,
  .home-featured-slide {
    min-height: 300px;
  }

  .home-featured-slide-title {
    max-width: none;
    font-size: 1.5rem;
  }
}



.footer-modern {
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.06), transparent 22%),
    linear-gradient(180deg, #030303 0%, #060606 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-modern-shell {
  background: linear-gradient(180deg, #080808 0%, #050505 100%);
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-col {
  border-right: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.82;
  color: #fff;
}

.footer-est {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.38rem 0.7rem;
  border-radius: 10px;
  background: rgba(13, 110, 253, 0.10);
  color: #74b0ff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.footer-description {
  color: #8a8f98;
  font-size: 0.96rem;
  line-height: 1.95;
  max-width: 44ch;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.58);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.25s ease;
}

.footer-social-link:hover {
  color: #fff;
  background: rgba(13, 110, 253, 0.14);
  border-color: rgba(13, 110, 253, 0.24);
  transform: translateY(-2px);
}

.footer-latest-row {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-links-col {
  border-right: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.01);
}

.footer-label {
  margin-bottom: 1.25rem;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.footer-label-primary {
  color: #0d6efd;
}

.footer-label-muted {
  color: rgba(255,255,255,0.28);
}

.footer-latest-card {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer-latest-thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: #111;
}

.footer-latest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.footer-latest-card:hover .footer-latest-thumb img {
  opacity: 1;
  transform: scale(1.06);
}

.footer-latest-title {
  color: rgba(255,255,255,0.62);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.5;
  transition: color 0.25s ease;
}

.footer-latest-card:hover .footer-latest-title {
  color: #fff;
}

.footer-page-link {
  text-decoration: none;
  color: rgba(255,255,255,0.58);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-page-link:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-cta-col {
  background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
}

.footer-cta-sub {
  color: rgba(255,255,255,0.68);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.footer-cta-link {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.footer-cta-link:hover {
  color: #fff;
}

.footer-bottom {
  opacity: 0.34;
  color: #fff;
}

.footer-dot {
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
}

@media (max-width: 991.98px) {
  .footer-brand-col {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
}

@media (max-width: 767.98px) {
  .footer-links-col {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .footer-bottom {
    align-items: flex-start !important;
    gap: 10px;
  }
}










