/* --------------------------------------------------
  CLOUDFIC BLOG
-------------------------------------------------- */

.blog-header {
   position: absolute;
}

.main-nav .active-nav {
   color: var(--ink);
}


/* --------------------------------------------------
  BLOG HERO
-------------------------------------------------- */

.blog-hero {
   position: relative;
   padding: 205px 0 105px;
   overflow: hidden;
}

.blog-hero::before {
   content: "";
   position: absolute;
   top: 0;
   left: 50%;
   width: min(1500px, 100%);
   height: 610px;
   transform: translateX(-50%);
   background:
       linear-gradient(
           180deg,
           rgba(255, 255, 255, 0.64),
           rgba(255, 255, 255, 0)
       );
   border-radius: 0 0 50% 50%;
}

.blog-glow,
.article-glow {
   position: absolute;
   border-radius: 50%;
   pointer-events: none;
}

.blog-glow-one {
   top: 40px;
   right: -140px;
   width: 560px;
   height: 560px;
   background:
       radial-gradient(
           circle,
           rgba(215, 188, 126, 0.3),
           transparent 68%
       );
}

.blog-glow-two {
   bottom: -260px;
   left: -190px;
   width: 560px;
   height: 560px;
   background:
       radial-gradient(
           circle,
           rgba(201, 196, 181, 0.23),
           transparent 68%
       );
}

.blog-hero-inner {
   position: relative;
   z-index: 2;
   max-width: 980px;
   text-align: center;
}

.blog-hero h1 {
   margin: 0 0 30px;
   font-size: clamp(4.4rem, 8vw, 8rem);
   font-weight: 680;
   letter-spacing: -0.078em;
   line-height: 0.88;
}

.blog-hero h1 span {
   color: transparent;
   background:
       linear-gradient(
           100deg,
           #8e6b27,
           #c5a15c 45%,
           #8e6b27
       );
   background-clip: text;
   -webkit-background-clip: text;
}

.blog-hero-copy {
   max-width: 680px;
   margin: 0 auto;
   font-size: 1.16rem;
}


/* --------------------------------------------------
  FEATURED ARTICLE
-------------------------------------------------- */



.featured-post-section {
   padding: 30px 0 90px;
}

.featured-post-card {
   width: min(100%, 860px);
   margin-inline: auto;
   overflow: hidden;

   background: rgba(255, 255, 255, 0.72);
   border: 1px solid rgba(31, 30, 26, 0.07);
   border-radius: 32px;

   box-shadow:
       0 28px 70px rgba(37, 31, 20, 0.1),
       inset 0 1px 0 rgba(255, 255, 255, 0.92);

   backdrop-filter: blur(22px);
}

.featured-post-image {
   display: grid;
   place-items: center;

   min-height: 0;
   padding: 34px;

   overflow: hidden;

   background:
       linear-gradient(
           145deg,
           #eee9de,
           #dfd1b7
       );
}

.featured-post-image img {
   display: block;

   width: auto;
   max-width: 100%;
   max-height: 340px;

   object-fit: contain;
   object-position: center;

   border-radius: 18px;

   box-shadow:
       0 24px 54px rgba(31, 27, 19, 0.18);
}

.featured-post-copy {
   padding: 38px 42px 42px;
   text-align: left;
}

.featured-post-copy h2 {
   max-width: 700px;
   margin-bottom: 20px;

   font-size: clamp(2.4rem, 4vw, 4rem);
   line-height: 1;
}

.featured-post-copy > p:not(.post-meta) {
   max-width: 690px;
   margin-bottom: 26px;

   font-size: 1rem;
   line-height: 1.72;
}

.read-more-button {
   display: inline-flex;
   align-items: center;
   gap: 12px;

   min-height: 48px;
   padding: 0 20px;

   color: #ffffff;

   background:
       linear-gradient(
           135deg,
           #191916,
           #323027
       );

   border-radius: 999px;

   font-size: 0.84rem;
   font-weight: 680;
}
.read-more-button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 14px;

   width: fit-content;
   min-height: 50px;
   margin-top: 4px;
   padding: 0 21px;

   color: #ffffff;

   background:
       linear-gradient(
           135deg,
           #191916,
           #323027
       );

   border-radius: 999px;

   box-shadow:
       0 14px 32px rgba(20, 19, 15, 0.18);

   font-size: 0.84rem;
   font-weight: 680;

   transition:
       transform 180ms ease,
       box-shadow 180ms ease;
}

.read-more-button:hover {
   transform: translateY(-2px);

   box-shadow:
       0 20px 40px rgba(20, 19, 15, 0.24);
}

.read-more-button span,
.post-card a span {
   color: var(--gold-light);
}
.read-more-button {
   display: inline-flex;
   align-items: center;
   gap: 15px;
   width: fit-content;
   margin-top: 18px;
   padding: 15px 20px;
   color: #ffffff;
   background:
       linear-gradient(
           135deg,
           #191916,
           #323027
       );
   border-radius: 999px;
   box-shadow:
       0 14px 32px rgba(20, 19, 15, 0.18);
   font-size: 0.85rem;
   font-weight: 680;
   transition:
       transform 180ms ease,
       box-shadow 180ms ease;
}

.read-more-button:hover {
   transform: translateY(-2px);
   box-shadow:
       0 20px 40px rgba(20, 19, 15, 0.24);
}

.read-more-button span,
.post-card a span {
   color: var(--gold-light);
}


/* --------------------------------------------------
  ARTICLE GRID
-------------------------------------------------- */

.blog-grid-section {
   padding: 105px 0 190px;
}

.blog-heading-row {
   display: grid;
   grid-template-columns: 1fr 420px;
   align-items: end;
   gap: 50px;
   margin-bottom: 62px;
}

.blog-heading-row h2 {
   margin-bottom: 0;
   font-size: clamp(3.4rem, 5.6vw, 6rem);
}

.blog-heading-row > p {
   margin-bottom: 12px;
}

.post-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 26px;
}

.post-card {
   overflow: hidden;
   background: rgba(255, 255, 255, 0.58);
   border: 1px solid rgba(31, 30, 26, 0.07);
   border-radius: 30px;
   box-shadow:
       0 22px 52px rgba(38, 32, 21, 0.07),
       inset 0 1px 0 rgba(255, 255, 255, 0.86);
   transition:
       transform 180ms ease,
       box-shadow 180ms ease;
}

.post-card:hover {
   transform: translateY(-5px);
   box-shadow:
       0 32px 68px rgba(38, 32, 21, 0.11),
       inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.post-card-image {
   display: grid;
   place-items: center;
   min-height: 245px;
   padding: 0;
   overflow: hidden;
}

.post-card-image img {
   width: 100%;
   height: 100%;
   object-fit: contain! important;
   max-width: none;
   border-radius: 18px 18px 0 0;
   box-shadow: none;
   display: block;
}

.warm-card-image {
   background:
       linear-gradient(
           145deg,
           #eee9de,
           #dfd0b2
       );
}

.dark-card-image {
   background:
       radial-gradient(
           circle at 25% 20%,
           #3a382f,
           transparent 46%
       ),
       #171714;
}

.neutral-card-image {
   background:
       linear-gradient(
           145deg,
           #ece9e1,
           #d8d5cd
       );
}

.post-card-body {
   padding: 32px 30px 34px;
}

.post-card h3 {
   margin-bottom: 16px;
   font-size: 1.8rem;
   line-height: 1.02;
}

.post-card p:not(.post-meta) {
   min-height: 88px;
   margin-bottom: 24px;
   font-size: 0.94rem;
}

.post-card a,
.coming-soon {
   color: #3f3d36;
   font-size: 0.82rem;
   font-weight: 700;
}

.post-card a {
   display: inline-flex;
   align-items: center;
   gap: 10px;
}

.coming-soon {
   color: #9a958a;
}


/* --------------------------------------------------
  BLOG SIGN-OFF
-------------------------------------------------- */

.blog-signoff {
   position: relative;
   padding: 155px 0;
   overflow: hidden;
   color: #ffffff;
   background:
       radial-gradient(
           circle at 50% 0%,
           #3b372c,
           transparent 42%
       ),
       linear-gradient(
           145deg,
           #20201c,
           #0d0d0b
       );
}

.blog-signoff-inner {
   max-width: 870px;
   text-align: center;
}

.blog-signoff h2 {
   margin-bottom: 28px;
   color: #ffffff;
}

.blog-signoff p:not(.section-label) {
   max-width: 610px;
   margin: 0 auto 36px;
   color: rgba(255, 255, 255, 0.58);
}


/* --------------------------------------------------
  FULL ARTICLE PAGE
-------------------------------------------------- */

.article-page {
   min-height: 100vh;
}

.article-hero {
   position: relative;
   padding: 185px 0 95px;
   overflow: hidden;
   text-align: center;
}

.article-hero::before {
   content: "";
   position: absolute;
   inset: 0 0 auto;
   height: 590px;
   background:
       linear-gradient(
           180deg,
           rgba(255, 255, 255, 0.68),
           rgba(255, 255, 255, 0)
       );
   border-radius: 0 0 50% 50%;
}

.article-glow {
   top: -180px;
   left: 50%;
   width: 820px;
   height: 650px;
   transform: translateX(-50%);
   background:
       radial-gradient(
           circle,
           rgba(215, 188, 126, 0.26),
           transparent 68%
       );
}

.article-shell {
   position: relative;
   z-index: 2;
   width: min(calc(100% - 48px), 860px);
   margin-inline: auto;
}

.article-back-link {
   display: inline-flex;
   margin-bottom: 36px;
   color: #716e65;
   font-size: 0.82rem;
   font-weight: 650;
}

.article-hero h1 {
   margin-bottom: 30px;
   font-size: clamp(4rem, 7.2vw, 7.3rem);
   font-weight: 680;
   letter-spacing: -0.075em;
   line-height: 0.92;
}

.article-standfirst {
   max-width: 710px;
   margin: 0 auto 28px;
   font-size: 1.22rem;
}

.article-byline {
   display: flex;
   justify-content: center;
   gap: 18px;
   color: #99958c;
   font-size: 0.72rem;
   font-weight: 650;
}

.article-content-shell {
   padding-bottom: 160px;
}

.article-image {
   margin: 0 0 70px;
   padding: 55px 0 55px 55px;
   overflow: hidden;
   background:
       linear-gradient(
           145deg,
           #eee9de,
           #e2d6bf
       );
   border-radius: 38px;
   box-shadow: var(--shadow-small);
}

.article-image img {
   width: calc(100% + 100px);
   max-width: none;
   border-radius: 22px 0 0 22px;
   box-shadow:
       0 34px 75px rgba(29, 25, 17, 0.22);
}

.article-content {
   max-width: 730px;
   margin-inline: auto;
}

.article-content p,
.article-content li {
   color: #4f4d46;
   font-family:
       Georgia,
       "Times New Roman",
       serif;
   font-size: 1.12rem;
   line-height: 1.88;
}

.article-content .article-lead {
   color: #292823;
   font-size: 1.28rem;
}

.article-content h2 {
   margin: 70px 0 24px;
   font-size: clamp(2.5rem, 4vw, 4rem);
}

.article-content blockquote {
   margin: 62px 0;
   padding: 10px 0 10px 34px;
   color: #4a3d22;
   border-left: 3px solid var(--gold);
   font-family:
       Georgia,
       "Times New Roman",
       serif;
   font-size: 1.65rem;
   font-style: italic;
   line-height: 1.45;
}

.article-content ul {
   display: grid;
   gap: 12px;
   padding-left: 24px;
}

.article-cta-card {
   max-width: 760px;
   margin: 90px auto 0;
   padding: 45px;
   text-align: center;
   background: rgba(255, 255, 255, 0.67);
   border: 1px solid rgba(31, 30, 26, 0.07);
   border-radius: 30px;
   box-shadow:
       var(--shadow-small),
       inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.article-cta-card h3 {
   margin-bottom: 18px;
   font-size: 2.35rem;
}

.article-cta-card p:not(.section-label) {
   max-width: 560px;
   margin: 0 auto 28px;
}


/* --------------------------------------------------
  TABLET
-------------------------------------------------- */

@media (max-width: 980px) {

   .featured-post-card {
       grid-template-columns: 1fr;
   }

   .featured-post-image {
       min-height: 450px;
   }

   .featured-post-copy {
       padding: 48px;
   }

   .blog-heading-row {
       grid-template-columns: 1fr;
   }

   .post-grid {
       grid-template-columns: 1fr;
   }

   .post-card-image {
       min-height: 360px;
   }

}


/* --------------------------------------------------
  MOBILE
-------------------------------------------------- */

@media (max-width: 760px) {

   .blog-hero {
       padding: 155px 0 80px;
   }

   .blog-hero h1 {
       font-size: clamp(4rem, 16vw, 6rem);
   }

   .featured-post-section {
       padding-top: 10px;
   }

   .featured-post-card {
       border-radius: 28px;
   }

   .featured-post-image {
       min-height: 330px;
       padding: 30px 0 30px 30px;
   }

   .featured-post-copy {
       padding: 34px 26px 38px;
   }

   .blog-grid-section {
       padding: 80px 0 120px;
   }

   .post-card-image {
       min-height: 260px;
   }

   .article-hero {
       padding: 145px 0 70px;
   }

   .article-hero h1 {
       font-size: clamp(3.7rem, 15vw, 5.6rem);
   }

   .article-image {
       padding: 28px 0 28px 28px;
       border-radius: 28px;
   }

   .article-content p,
   .article-content li {
       font-size: 1.03rem;
   }

   .article-content blockquote {
       padding-left: 22px;
       font-size: 1.4rem;
   }

   .article-cta-card {
       padding: 34px 24px;
   }

}
.article-content p {
   text-align: justify;
   text-justify: inter-word;
   hyphens: auto;
   -webkit-hyphens: auto;
}

.blog-community-section {
 padding: 5rem 1.5rem 4rem;
}

.blog-community-card {
 max-width: 820px;
 margin: 0 auto;
 text-align: center;
}

.blog-community-card .section-label {
 text-align: center;
}

.blog-community-card h2 {
 text-align: center;
}

.blog-community-card p {
 max-width: 720px;
 margin-left: auto;
 margin-right: auto;
}

.blog-community-card .read-more-button {
 margin-left: auto;
 margin-right: auto;
}
* --------------------------------------------------
COMMUNITY SIGNUP FORM
-------------------------------------------------- */
.community-signup-section {
padding-top: 0;
}

.community-signup-card {
margin-top: -40px;
}

.community-signup-copy h2 {
max-width: 700px;
}

.community-signup-form {
display: grid;
gap: 14px;
max-width: 560px;
margin-top: 32px;
}

.community-signup-form label {
color: #3f3d36;
font-size: 0.84rem;
font-weight: 680;
}

.community-signup-form input[type="email"],
.community-signup-form input[type="text"] {
width: 100%;
min-height: 52px;
padding: 0 16px;
color: #292823;
background: rgba(255, 255, 255, 0.86);
border: 1px solid rgba(31, 30, 26, 0.12);
border-radius: 16px;
font: inherit;
outline: none;
}

.community-signup-form input[type="email"]:focus,
.community-signup-form input[type="text"]:focus {
border-color: rgba(142, 107, 39, 0.42);
box-shadow:
0 0 0 4px rgba(197, 161, 92, 0.14);
}

.community-checkbox-row {
display: grid;
grid-template-columns: auto 1fr;
align-items: start;
gap: 12px;
margin-top: 8px;
color: #4f4d46;
font-size: 0.9rem;
font-weight: 500;
line-height: 1.55;
}

.community-checkbox-row input {
margin-top: 4px;
}

.community-signup-form .read-more-button {
width: fit-content;
margin-top: 18px;
border: 0;
cursor: pointer;
}
.cf-comments {
    --cf-ink: #1f2328;
    --cf-soft-ink: #66707a;
    --cf-border: rgba(31, 35, 40, 0.12);
    --cf-panel: #f5f7f8;

    --cf-accent: #d9a83f;
    --cf-accent-dark: #8d6519;
    --cf-accent-soft: #fff4d6;

    --cf-white: #ffffff;
    --cf-danger: #a53d4f;

    width: min(100%, 940px);
    margin: 72px auto 30px;
    padding: 38px;
    color: var(--cf-ink);
    background:
        radial-gradient(
            circle at top right,
            rgba(229, 139, 42, 0.12),
            transparent 34%
        ),
        var(--cf-white);
    border: 1px solid var(--cf-border);
    border-radius: 26px;
    box-shadow:
        0 24px 60px rgba(31, 35, 40, 0.08),
        0 3px 12px rgba(31, 35, 40, 0.04);
    box-sizing: border-box;
}

.cf-comments * {
    box-sizing: border-box;
}

.cf-comments-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 28px;
}

.cf-comments-eyebrow {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--cf-accent-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.cf-comments-heading h2 {
    margin: 0 0 9px;
    color: var(--cf-ink);
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.cf-comments-heading p {
    max-width: 610px;
    margin: 0;
    color: var(--cf-soft-ink);
    font-size: 1rem;
    line-height: 1.65;
}

.cf-comment-count {
    min-width: 86px;
    padding: 14px 16px;
    text-align: center;
    background: var(--cf-panel);
    border: 1px solid var(--cf-border);
    border-radius: 18px;
}

.cf-comment-count strong {
    display: block;
    color: var(--cf-accent-dark);
    font-size: 1.6rem;
    line-height: 1;
}

.cf-comment-count span {
    display: block;
    margin-top: 5px;
    color: var(--cf-soft-ink);
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cf-member-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
    padding: 18px;
    background: linear-gradient(
        135deg,
        rgba(229, 139, 42, 0.14),
        rgba(229, 139, 42, 0.04)
    );
    border: 1px solid rgba(229, 139, 42, 0.24);
    border-radius: 18px;
}

.cf-member-icon {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--cf-white);
    background: linear-gradient(
        145deg,
        var(--cf-accent),
        var(--cf-accent-dark)
    );
    border-radius: 14px;
    box-shadow: 0 9px 22px rgba(184, 98, 19, 0.22);
}

.cf-member-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 4px;
}

.cf-member-copy strong {
    color: var(--cf-ink);
    font-size: 0.95rem;
}

.cf-member-copy span {
    color: var(--cf-soft-ink);
    font-size: 0.86rem;
    line-height: 1.45;
}

.cf-member-button {
    flex-shrink: 0;
    padding: 11px 16px;
    color: var(--cf-accent-dark);
    font-size: 0.84rem;
    font-weight: 750;
    text-decoration: none;
    background: var(--cf-white);
    border: 1px solid rgba(229, 139, 42, 0.3);
    border-radius: 12px;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        border-color 160ms ease;
}

.cf-member-button:hover {
    transform: translateY(-2px);
    border-color: rgba(229, 139, 42, 0.58);
    box-shadow: 0 9px 22px rgba(31, 35, 40, 0.1);
}

.cf-comment-form {
    padding: 24px;
    background: var(--cf-panel);
    border: 1px solid var(--cf-border);
    border-radius: 21px;
}

.cf-form-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cf-field {
    margin-bottom: 17px;
}

.cf-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--cf-ink);
    font-size: 0.82rem;
    font-weight: 760;
}

.cf-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cf-label-row span {
    color: var(--cf-soft-ink);
    font-size: 0.75rem;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
    width: 100%;
    color: var(--cf-ink);
    font: inherit;
    background: var(--cf-white);
    border: 1px solid var(--cf-border);
    border-radius: 13px;
    outline: none;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}

.cf-field input,
.cf-field select {
    height: 48px;
    padding: 0 14px;
}

.cf-field textarea {
    min-height: 130px;
    padding: 14px;
    line-height: 1.55;
    resize: vertical;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: #9299a0;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
    background: var(--cf-white);
    border-color: rgba(229, 139, 42, 0.72);
    box-shadow: 0 0 0 4px rgba(229, 139, 42, 0.13);
}

.cf-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cf-form-footer p {
    margin: 0;
    color: var(--cf-soft-ink);
    font-size: 0.77rem;
    line-height: 1.4;
}

.cf-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 155px;
    padding: 13px 18px;
    color: var(--cf-white);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 780;
    cursor: pointer;
    background: linear-gradient(
        135deg,
        var(--cf-accent),
        var(--cf-accent-dark)
    );
    border: 0;
    border-radius: 13px;
    box-shadow: 0 12px 25px rgba(184, 98, 19, 0.24);
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        opacity 160ms ease;
}

.cf-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(184, 98, 19, 0.3);
}

.cf-submit-button:active {
    transform: translateY(0);
}

.cf-submit-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.cf-comment-status {
    min-height: 24px;
    margin: 12px 3px 0;
    color: var(--cf-accent-dark);
    font-size: 0.82rem;
    font-weight: 650;
}

.cf-comments-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.cf-comment-card {
    position: relative;
    padding: 20px 20px 19px 76px;
    background: var(--cf-white);
    border: 1px solid var(--cf-border);
    border-radius: 18px;
    box-shadow: 0 5px 18px rgba(31, 35, 40, 0.035);
    animation: cfCommentIn 260ms ease both;
}

.cf-comment-avatar {
    position: absolute;
    top: 19px;
    left: 19px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--cf-white);
    font-size: 0.95rem;
    font-weight: 800;
    background: linear-gradient(
        145deg,
        var(--cf-accent),
        var(--cf-accent-dark)
    );
    border-radius: 14px;
}

.cf-comment-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 9px;
}

.cf-comment-name {
    color: var(--cf-ink);
    font-weight: 780;
}

.cf-comment-role {
    padding: 4px 8px;
    color: var(--cf-accent-dark);
    font-size: 0.67rem;
    font-weight: 760;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--cf-accent-soft);
    border-radius: 999px;
}

.cf-comment-date {
    color: var(--cf-soft-ink);
    font-size: 0.73rem;
}

.cf-comment-body {
    margin: 0;
    color: #3e444a;
    font-size: 0.93rem;
    line-height: 1.65;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.cf-comment-actions {
    display: flex;
    gap: 14px;
    margin-top: 13px;
}

.cf-comment-action {
    padding: 0;
    color: var(--cf-soft-ink);
    font: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    background: none;
    border: 0;
}

.cf-comment-action:hover {
    color: var(--cf-accent-dark);
}

.cf-empty-state {
    margin-top: 24px;
    padding: 38px 20px;
    text-align: center;
    background: rgba(245, 247, 248, 0.78);
    border: 1px dashed rgba(31, 35, 40, 0.18);
    border-radius: 18px;
}

.cf-empty-symbol {
    height: 38px;
    color: rgba(229, 139, 42, 0.45);
    font-family: Georgia, serif;
    font-size: 3.5rem;
    line-height: 1;
}

.cf-empty-state strong {
    display: block;
    margin-bottom: 5px;
    color: var(--cf-ink);
}

.cf-empty-state p {
    margin: 0;
    color: var(--cf-soft-ink);
    font-size: 0.86rem;
}

@keyframes cfCommentIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    .cf-comments {
        margin-top: 44px;
        padding: 22px;
        border-radius: 20px;
    }

    .cf-comments-heading {
        flex-direction: column;
    }

    .cf-comment-count {
        display: flex;
        align-items: baseline;
        gap: 7px;
        min-width: 0;
    }

    .cf-comment-count strong,
    .cf-comment-count span {
        display: inline;
        margin: 0;
    }

    .cf-member-banner {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .cf-member-copy {
        min-width: calc(100% - 64px);
    }

    .cf-member-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;

    color: #2b210f;
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;

    background: linear-gradient(
        180deg,
        #f2c86d 0%,
        #d9a83f 100%
    );

    border: 1px solid #b88625;
    border-radius: 12px;

    box-shadow:
        0 3px 0 #8d6519,
        0 8px 18px rgba(141, 101, 25, 0.22);

    cursor: pointer;

    transition:
        transform 140ms ease,
        box-shadow 140ms ease,
        filter 140ms ease;
}

.cf-member-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 5px 0 #8d6519,
        0 12px 24px rgba(141, 101, 25, 0.28);

    filter: brightness(1.04);
}

.cf-member-button:active {
    transform: translateY(2px);

    box-shadow:
        0 1px 0 #8d6519,
        0 4px 10px rgba(141, 101, 25, 0.2);
}
    .cf-form-top {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cf-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .cf-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 165px;
    min-height: 48px;
    padding: 13px 20px;

    color: #241a08;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 850;

    cursor: pointer;

    background: linear-gradient(
        180deg,
        #f4cd75 0%,
        #d9a83f 100%
    );

    border: 1px solid #b88625;
    border-radius: 13px;

    box-shadow:
        0 4px 0 #8d6519,
        0 10px 24px rgba(141, 101, 25, 0.25);

    transition:
        transform 140ms ease,
        box-shadow 140ms ease,
        filter 140ms ease;
}

.cf-submit-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 6px 0 #8d6519,
        0 14px 28px rgba(141, 101, 25, 0.3);

    filter: brightness(1.04);
}

.cf-submit-button:active {
    transform: translateY(2px);

    box-shadow:
        0 1px 0 #8d6519,
        0 5px 12px rgba(141, 101, 25, 0.22);
}

.cf-submit-button:disabled {
    cursor: wait;
    opacity: 0.6;
    transform: none;
}
    .cf-comment-card {
        padding: 70px 18px 18px;
    }

    .cf-comment-avatar {
        top: 17px;
        left: 17px;
    }

    .cf-comment-meta {
        position: absolute;
        top: 19px;
        left: 70px;
        right: 12px;
    }

    .cf-comment-date {
        width: 100%;
    }
}
