/* =========================================================
   Knowledge Center — Single Newsletter
   File: assets/css/layout/knowledge-center/knowledge-center-single-newsletter.css
   Template: templates/single-agr_newsletter.php
   ========================================================= */


/* =========================================================
   01. PAGE WRAPPER
   ========================================================= */

.agr-kc-newsletter-single {
    --kc-border: rgba(26, 48, 26, 0.10);

    position: relative;
    overflow: hidden;
    width: 100%;
    background: var(--kc-bg-light, #f0f0f0);
    color: var(--kc-black, #000000);
    font-family: var(--kc-font-body, Lato, Arial, sans-serif);
}

.agr-kc-newsletter-single *,
.agr-kc-newsletter-single *::before,
.agr-kc-newsletter-single *::after {
    box-sizing: border-box;
}

.agr-kc-newsletter-single__article {
    position: relative;
    overflow: hidden;
}


/* =========================================================
   02. HERO
   ========================================================= */

.agr-kc-newsletter-single-hero {
    position: relative;
    z-index: 5;
    width: 100%;
    min-height: 720px;
    padding: 34px 42px 0;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 12% 18%, rgba(38, 173, 33, 0.18) 0%, transparent 28%),
        radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 24%),
        linear-gradient(135deg, #111811 0%, #1a301a 48%, #0f1710 100%);
}

.agr-kc-newsletter-single-hero--has-image {
    background:
        linear-gradient(
            90deg,
            rgba(10, 16, 11, 0.94) 0%,
            rgba(26, 48, 26, 0.86) 48%,
            rgba(10, 16, 11, 0.76) 100%
        ),
        var(--agr-kc-newsletter-single-banner-image),
        linear-gradient(135deg, #111811 0%, #1a301a 100%);
    background-position:
        center,
        var(--agr-kc-newsletter-single-banner-position, center center),
        center;
    background-repeat: no-repeat;
    background-size: cover;
}

.agr-kc-newsletter-single-hero--no-image {
    background:
        radial-gradient(circle at 12% 18%, rgba(38, 173, 33, 0.18) 0%, transparent 28%),
        radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 24%),
        linear-gradient(135deg, #111811 0%, #1a301a 48%, #0f1710 100%);
}

.agr-kc-newsletter-single-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.22;
    -webkit-mask-image: radial-gradient(
        circle at 76% 42%,
        #000 0%,
        rgba(0, 0, 0, 0.56) 42%,
        transparent 76%
    );
    mask-image: radial-gradient(
        circle at 76% 42%,
        #000 0%,
        rgba(0, 0, 0, 0.56) 42%,
        transparent 76%
    );
}

.agr-kc-newsletter-single-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.04) 0%,
            transparent 36%,
            rgba(0, 0, 0, 0.16) 100%
        );
}


/* =========================================================
   03. HERO DECORATIONS
   ========================================================= */

.agr-kc-newsletter-single-hero__background {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.agr-kc-newsletter-single-hero__shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
}

.agr-kc-newsletter-single-hero__shape--one {
    top: 76px;
    right: 7%;
    width: 280px;
    height: 280px;
    transform: rotate(8deg);
}

.agr-kc-newsletter-single-hero__shape--two {
    bottom: 70px;
    left: -80px;
    width: 260px;
    height: 180px;
    opacity: 0.7;
    transform: rotate(-12deg);
}

.agr-kc-newsletter-single-hero__line {
    position: absolute;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.24),
            rgba(38, 173, 33, 0.46),
            transparent
        );
}

.agr-kc-newsletter-single-hero__line--one {
    top: 180px;
    right: -8%;
    left: -8%;
    transform: rotate(-2.2deg);
}

.agr-kc-newsletter-single-hero__line--two {
    right: -10%;
    bottom: 145px;
    left: -10%;
    opacity: 0.64;
    transform: rotate(2.4deg);
}


/* =========================================================
   04. HERO INNER / TOPBAR
   ========================================================= */

.agr-kc-newsletter-single-hero__inner {
    position: relative;
    z-index: 7;
    max-width: var(--kc-container-wide, 1440px);
    min-height: 686px;
    margin: 0 auto;
    padding: 0 48px 92px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 0;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 24px 72px rgba(0, 0, 0, 0.16);
}

.agr-kc-newsletter-single-hero__inner::before {
    content: "";
    position: absolute;
    inset: 8px;
    z-index: -1;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.045);
}

.agr-kc-newsletter-single-hero__inner::after {
    content: "";
    position: absolute;
    right: 20%;
    bottom: 22px;
    left: 0;
    height: 1px;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.11) 22%,
            rgba(38, 173, 33, 0.33) 68%,
            rgba(255, 255, 255, 0) 100%
        );
}

.agr-kc-newsletter-single-hero__topbar {
    position: relative;
    z-index: 9;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    min-height: 104px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.agr-kc-newsletter-single-hero__topbar::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -1px;
    left: -48px;
    height: 1px;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.14) 20%,
            rgba(255, 255, 255, 0.42) 48%,
            rgba(38, 173, 33, 0.34) 74%,
            rgba(255, 255, 255, 0) 100%
        );
}

.agr-kc-newsletter-single-hero__back {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    width: fit-content;
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
        color 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.agr-kc-newsletter-single-hero__back:hover,
.agr-kc-newsletter-single-hero__back:focus-visible {
    color: #ffffff;
    opacity: 0.82;
    transform: translateX(-2px);
}

.agr-kc-newsletter-single-hero__back:focus-visible {
    outline: 2px solid var(--kc-green-accent, #26ad21);
    outline-offset: 6px;
}

.agr-kc-newsletter-single-hero__back-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: var(--kc-green-accent, #26ad21);
}

.agr-kc-newsletter-single-hero__back-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.agr-kc-newsletter-single-hero__label {
    justify-self: center;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.055em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.agr-kc-newsletter-single-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.agr-kc-newsletter-single-hero__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    min-height: 48px;
    padding: 0 28px;
    overflow: hidden;
    color: #ffffff;
    border: 1px solid rgba(74, 138, 74, 0.42);
    background:
        linear-gradient(
            135deg,
            rgba(74, 138, 74, 0.98) 0%,
            rgba(63, 125, 63, 0.94) 56%,
            rgba(26, 48, 26, 0.94) 100%
        );
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 12px 24px rgba(0, 0, 0, 0.16);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.045em;
    text-align: center;
    text-transform: uppercase;
}

.agr-kc-newsletter-single-hero__badge::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            115deg,
            transparent 0%,
            rgba(255, 255, 255, 0.16) 24%,
            rgba(255, 255, 255, 0.035) 44%,
            transparent 62%
        );
    transform: translateX(-38%);
}

.agr-kc-newsletter-single-hero__badge--featured {
    border-color: rgba(38, 173, 33, 0.56);
    background:
        linear-gradient(
            135deg,
            #26ad21 0%,
            #4a8a4a 52%,
            #1a301a 100%
        );
}


/* =========================================================
   05. HERO CONTENT
   ========================================================= */

.agr-kc-newsletter-single-hero__layout {
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(390px, 0.72fr);
    gap: clamp(48px, 6vw, 92px);
    align-items: center;
    padding-top: 54px;
}

.agr-kc-newsletter-single-hero__content {
    position: relative;
    z-index: 8;
    min-width: 0;
    max-width: 740px;
}

.agr-kc-newsletter-single-hero__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.agr-kc-newsletter-single-hero__category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 8px 13px;
    color: var(--kc-green-accent, #26ad21);
    border: 1px solid rgba(38, 173, 33, 0.34);
    background: rgba(38, 173, 33, 0.08);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.agr-kc-newsletter-single-hero__title {
    max-width: 820px;
    margin: 0;
    color: #ffffff;
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: clamp(48px, 5.5vw, 50px);
    font-weight: 850;
    line-height: 0.96;
    letter-spacing: -0.052em;
    text-wrap: balance;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 34px rgba(0, 0, 0, 0.34);
}

.agr-kc-newsletter-single-hero__description {
    max-width: 660px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.7;
}

.agr-kc-newsletter-single-hero__description p {
    margin: 0;
    color: inherit;
}

.agr-kc-newsletter-single-hero__description p + p {
    margin-top: 16px;
}

.agr-kc-newsletter-single-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.agr-kc-newsletter-single-hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 160px;
    min-height: 70px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.035)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 14px 28px rgba(0, 0, 0, 0.12);
}

.agr-kc-newsletter-single-hero__meta-label {
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 10px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.agr-kc-newsletter-single-hero__meta-value {
    color: #ffffff;
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 22px;
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.agr-kc-newsletter-single-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.agr-kc-newsletter-single-hero__button {
    position: relative;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 20px;
    overflow: hidden;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition:
        color 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.agr-kc-newsletter-single-hero__button:hover {
    transform: translateY(-2px);
}

.agr-kc-newsletter-single-hero__button--primary {
    color: #ffffff;
    border: 1px solid rgba(38, 173, 33, 0.72);
    background: var(--kc-green-accent, #26ad21);
    box-shadow: 0 14px 28px rgba(38, 173, 33, 0.22);
}

.agr-kc-newsletter-single-hero__button--primary:hover {
    color: #ffffff;
    border-color: var(--kc-green-main, #4a8a4a);
    background: var(--kc-green-main, #4a8a4a);
}

.agr-kc-newsletter-single-hero__button--secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.06);
}

.agr-kc-newsletter-single-hero__button--secondary:hover {
    color: var(--kc-green-dark, #1a301a);
    border-color: #ffffff;
    background: #ffffff;
}

.agr-kc-newsletter-single-hero__button-icon {
    transition: transform 0.22s ease;
}

.agr-kc-newsletter-single-hero__button:hover .agr-kc-newsletter-single-hero__button-icon {
    transform: translate(2px, -2px);
}


/* =========================================================
   06. HERO SCREEN / PREVIEW
   ========================================================= */

.agr-kc-newsletter-single-hero__panel {
    position: relative;
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 470px;
}

.agr-kc-newsletter-single-hero__screen-stack {
    position: relative;
    width: min(100%, 500px);
    min-height: 430px;
    transform:
        perspective(1100px)
        rotateY(-7deg)
        rotateX(3deg);
}

.agr-kc-newsletter-single-hero__screen-stack::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 78%;
    height: 34px;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse at center,
            rgba(0, 0, 0, 0.34) 0%,
            transparent 70%
        );
    filter: blur(8px);
    transform: translateX(-50%);
}

.agr-kc-newsletter-single-hero__screen-layer {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.035)
        );
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 24px 58px rgba(0, 0, 0, 0.20);
}

.agr-kc-newsletter-single-hero__screen-layer--back {
    opacity: 0.46;
    transform: translate(34px, -34px) rotate(7deg);
}

.agr-kc-newsletter-single-hero__screen-layer--middle {
    opacity: 0.62;
    transform: translate(17px, -17px) rotate(3deg);
}

.agr-kc-newsletter-single-hero__screen {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background:
        radial-gradient(
            circle at 74% 20%,
            rgba(38, 173, 33, 0.26),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.16),
            rgba(255, 255, 255, 0.055)
        );
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 28px 76px rgba(0, 0, 0, 0.28);
}

.agr-kc-newsletter-single-hero__screen::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.16;
}

.agr-kc-newsletter-single-hero__screen::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -32%;
    z-index: 4;
    width: 34%;
    height: 150%;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent
        );
    transform: rotate(18deg);
    animation: agrKcNewsletterSingleHeroSweep 5.8s ease-in-out infinite;
}

.agr-kc-newsletter-single-hero__screen-top {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 8px;
    height: 48px;
    padding: 17px 19px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.06);
}

.agr-kc-newsletter-single-hero__screen-top span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
}

.agr-kc-newsletter-single-hero__screen-top span:first-child {
    background: var(--kc-green-accent, #26ad21);
}

.agr-kc-newsletter-single-hero__screen-body {
    position: relative;
    z-index: 3;
    padding: 26px;
}

.agr-kc-newsletter-single-preview {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.16),
            rgba(255, 255, 255, 0.07)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 18px 34px rgba(0, 0, 0, 0.16);
}

.agr-kc-newsletter-single-preview::before {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 0;
    z-index: 5;
    width: 4px;
    background: var(--kc-green-accent, #26ad21);
}

.agr-kc-newsletter-single-preview__top {
    position: relative;
    z-index: 4;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 15px 22px 14px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.055);
}

.agr-kc-newsletter-single-preview__meta-label,
.agr-kc-newsletter-single-preview__date {
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 10px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.agr-kc-newsletter-single-preview__meta-label {
    color: var(--kc-green-accent, #26ad21);
}

.agr-kc-newsletter-single-preview__date {
    color: rgba(255, 255, 255, 0.66);
    white-space: nowrap;
}

.agr-kc-newsletter-single-preview__image-wrap {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    background: #ffffff;
}

.agr-kc-newsletter-single-preview__image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
}

.agr-kc-newsletter-single-preview__visual {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    background:
        radial-gradient(circle at 68% 22%, rgba(38, 173, 33, 0.24), transparent 28%),
        radial-gradient(circle at 24% 76%, rgba(255, 255, 255, 0.08), transparent 32%),
        linear-gradient(145deg, #102111 0%, #1a301a 58%, #233d23 100%);
}

.agr-kc-newsletter-single-preview__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 0 53%, rgba(255, 255, 255, 0.11) 53% 70%, transparent 70%),
        linear-gradient(135deg, transparent 0 70%, rgba(255, 255, 255, 0.06) 70% 82%, transparent 82%);
}

.agr-kc-newsletter-single-preview__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: radial-gradient(
        circle at 70% 36%,
        #000 0%,
        rgba(0, 0, 0, 0.58) 42%,
        transparent 76%
    );
    mask-image: radial-gradient(
        circle at 70% 36%,
        #000 0%,
        rgba(0, 0, 0, 0.58) 42%,
        transparent 76%
    );
}

.agr-kc-newsletter-single-preview__visual-line {
    position: absolute;
    z-index: 2;
    display: block;
    height: 2px;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            rgba(38, 173, 33, 0),
            rgba(38, 173, 33, 0.9),
            rgba(255, 255, 255, 0.44),
            rgba(38, 173, 33, 0)
        );
    filter: drop-shadow(0 0 8px rgba(38, 173, 33, 0.35));
}

.agr-kc-newsletter-single-preview__visual-line--one {
    top: 78px;
    right: 84px;
    left: 42px;
    transform: rotate(-3deg);
}

.agr-kc-newsletter-single-preview__visual-line--two {
    right: 44px;
    bottom: 74px;
    left: 86px;
    opacity: 0.66;
    transform: rotate(-3deg);
}

.agr-kc-newsletter-single-preview__visual-glow {
    position: absolute;
    top: 45%;
    right: 18%;
    z-index: 1;
    width: 150px;
    height: 8px;
    border-radius: 999px;
    background: rgba(38, 173, 33, 0.58);
    filter: blur(14px);
    opacity: 0.74;
    transform: rotate(-5deg);
}

.agr-kc-newsletter-single-preview__content {
    position: relative;
    z-index: 4;
    display: grid;
    gap: 12px;
    padding: 24px 26px 28px 30px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.025)
        );
}

.agr-kc-newsletter-single-preview__label {
    color: var(--kc-green-accent, #26ad21);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.agr-kc-newsletter-single-preview__title {
    color: #ffffff;
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 26px;
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.agr-kc-newsletter-single-preview__text {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 15px;
    line-height: 1.58;
}


/* =========================================================
   07. HERO BOTTOM LINE
   ========================================================= */

.agr-kc-archive-banner__bottom-line {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 8;
    height: 46px;
    color: rgba(74, 138, 74, 0.96);
    pointer-events: none;
}

.agr-kc-archive-banner__bottom-line svg {
    display: block;
    width: 100%;
    height: 46px;
    overflow: visible;
}


/* =========================================================
   06. CONTENT SECTION
   ========================================================= */

.agr-kc-newsletter-single-content-section {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 92px 42px 108px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 16%, rgba(74, 138, 74, 0.08), transparent 24rem),
        linear-gradient(180deg, var(--kc-bg-light, #f0f0f0) 0%, #f7f7f7 100%);
}

.agr-kc-newsletter-single-content-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(26, 48, 26, 0.025) 1px, transparent 1px),
        linear-gradient(180deg, rgba(26, 48, 26, 0.02) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.26;
    mask-image: radial-gradient(circle at 50% 35%, #000 0%, rgba(0, 0, 0, 0.42) 42%, transparent 78%);
}

.agr-kc-newsletter-single-content-section__inner {
    position: relative;
    z-index: 1;
    max-width: var(--kc-container-max-width, 1180px);
    margin: 0 auto;
}

.agr-kc-newsletter-single-content-section__layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}


/* =========================================================
   07. SIDEBAR / MESSAGE INFORMATION
   ========================================================= */

.agr-kc-newsletter-single-sidebar {
    position: sticky;
    top: 110px;
    min-width: 0;
}

.agr-kc-newsletter-single-sidebar__box {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(26, 48, 26, 0.1);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 247, 0.95));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 18px 42px rgba(0, 0, 0, 0.06);
}

.agr-kc-newsletter-single-sidebar__box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    bottom: 28px;
    width: 4px;
    background: var(--kc-green-accent, #26ad21);
}

.agr-kc-newsletter-single-sidebar__eyebrow {
    display: block;
    margin: 0 0 14px;
    color: var(--kc-green-main, #4a8a4a);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.agr-kc-newsletter-single-sidebar__title {
    margin: 0;
    color: var(--kc-black, #000000);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 26px;
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.agr-kc-newsletter-single-sidebar__list {
    display: grid;
    gap: 0;
    margin: 26px 0 0;
    border-top: 1px solid rgba(26, 48, 26, 0.1);
}

.agr-kc-newsletter-single-sidebar__list div {
    padding: 17px 0;
    border-bottom: 1px solid rgba(26, 48, 26, 0.1);
}

.agr-kc-newsletter-single-sidebar__list dt {
    margin: 0 0 8px;
    color: rgba(0, 0, 0, 0.52);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.agr-kc-newsletter-single-sidebar__list dd {
    margin: 0;
    color: var(--kc-green-dark, #1a301a);
    font-family: var(--kc-font-body, Lato, Arial, sans-serif);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.agr-kc-newsletter-single-sidebar__terms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.agr-kc-newsletter-single-sidebar__terms a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 11px;
    color: var(--kc-green-dark, #1a301a);
    border: 1px solid rgba(26, 48, 26, 0.12);
    border-radius: var(--kc-radius-xs, 4px);
    background: #ffffff;
    font-family: var(--kc-font-body, Lato, Arial, sans-serif);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.agr-kc-newsletter-single-sidebar__terms a:hover {
    color: #ffffff;
    border-color: var(--kc-green-main, #4a8a4a);
    background: var(--kc-green-main, #4a8a4a);
    transform: translateY(-1px);
}



.agr-kc-newsletter-single-sidebar__actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(26, 48, 26, 0.10);
}

.agr-kc-newsletter-single-sidebar__button {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition:
        color 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.agr-kc-newsletter-single-sidebar__button:hover {
    transform: translateY(-2px);
}

.agr-kc-newsletter-single-sidebar__button--primary {
    color: #ffffff;
    border: 1px solid var(--kc-green-main, #4a8a4a);
    background:
        linear-gradient(
            135deg,
            #4a8a4a 0%,
            #3f7d3f 58%,
            #1a301a 100%
        );
    box-shadow:
        0 12px 24px rgba(26, 48, 26, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.agr-kc-newsletter-single-sidebar__button--primary:hover {
    color: #ffffff;
    border-color: var(--kc-green-accent, #26ad21);
    background:
        linear-gradient(
            135deg,
            #26ad21 0%,
            #4a8a4a 54%,
            #1a301a 100%
        );
}

.agr-kc-newsletter-single-sidebar__button--secondary {
    color: var(--kc-green-dark, #1a301a);
    border: 1px solid rgba(26, 48, 26, 0.16);
    background: #ffffff;
}

.agr-kc-newsletter-single-sidebar__button--secondary:hover {
    color: #ffffff;
    border-color: var(--kc-green-main, #4a8a4a);
    background: var(--kc-green-main, #4a8a4a);
}


/* =========================================================
   08. MESSAGE BOX
   ========================================================= */

.agr-kc-newsletter-single-message {
    min-width: 0;
}

.agr-kc-newsletter-single-message__header {
    margin-bottom: 28px;
}

.agr-kc-newsletter-single-message__eyebrow {
    display: block;
    margin: 0 0 14px;
    color: var(--kc-green-main, #4a8a4a);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.agr-kc-newsletter-single-message__title {
    margin: 0;
    color: var(--kc-black, #000000);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.agr-kc-newsletter-single-message__content {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 5vw, 58px);
    border: 1px solid rgba(26, 48, 26, 0.1);
    border-radius: 10px;
    background: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 18px 42px rgba(0, 0, 0, 0.065);
}

.agr-kc-newsletter-single-message__content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 34px;
    bottom: 34px;
    width: 5px;
    background: var(--kc-green-accent, #26ad21);
}

.agr-kc-newsletter-single-message__content > * {
    position: relative;
    z-index: 1;
}

.agr-kc-newsletter-single-message__content h1,
.agr-kc-newsletter-single-message__content h2,
.agr-kc-newsletter-single-message__content h3,
.agr-kc-newsletter-single-message__content h4 {
    color: var(--kc-green-dark, #1a301a);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    letter-spacing: -0.03em;
}

.agr-kc-newsletter-single-message__content h2 {
    margin-top: 1.7em;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
}

.agr-kc-newsletter-single-message__content h3 {
    margin-top: 1.55em;
    font-size: clamp(22px, 2.3vw, 30px);
    line-height: 1.16;
}

.agr-kc-newsletter-single-message__content p {
    color: rgba(0, 0, 0, 0.72);
    font-family: var(--kc-font-body, Lato, Arial, sans-serif);
    font-size: 17px;
    line-height: 1.74;
}

.agr-kc-newsletter-single-message__content p:first-child,
.agr-kc-newsletter-single-message__content h2:first-child,
.agr-kc-newsletter-single-message__content h3:first-child {
    margin-top: 0;
}

.agr-kc-newsletter-single-message__content a {
    color: var(--kc-green-main, #4a8a4a);
    font-weight: 800;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.agr-kc-newsletter-single-message__content a:hover {
    color: var(--kc-green-accent, #26ad21);
}

.agr-kc-newsletter-single-message__content ul,
.agr-kc-newsletter-single-message__content ol {
    padding-left: 1.35em;
    color: rgba(0, 0, 0, 0.72);
    font-family: var(--kc-font-body, Lato, Arial, sans-serif);
    font-size: 17px;
    line-height: 1.7;
}

.agr-kc-newsletter-single-message__content li + li {
    margin-top: 0.45em;
}

.agr-kc-newsletter-single-message__content blockquote {
    margin: 34px 0;
    padding: 28px 30px;
    border-left: 5px solid var(--kc-green-accent, #26ad21);
    background: linear-gradient(180deg, rgba(74, 138, 74, 0.08), rgba(74, 138, 74, 0.04));
    color: var(--kc-green-dark, #1a301a);
    font-family: var(--kc-font-body, Lato, Arial, sans-serif);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.55;
}

.agr-kc-newsletter-single-message__content img {
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(26, 48, 26, 0.08);
}

.agr-kc-newsletter-single-message__content .wp-block-button__link {
    border-radius: var(--kc-radius-xs, 4px);
    background: var(--kc-green-accent, #26ad21);
    color: #ffffff;
    font-family: var(--kc-font-body, Lato, Arial, sans-serif);
    font-weight: 800;
    text-decoration: none;
}

.agr-kc-newsletter-single-message__empty {
    padding: 42px;
    border: 1px solid rgba(26, 48, 26, 0.1);
    border-radius: 10px;
    background: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 18px 42px rgba(0, 0, 0, 0.065);
}

.agr-kc-newsletter-single-message__empty span {
    display: block;
    margin-bottom: 14px;
    color: var(--kc-green-main, #4a8a4a);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.agr-kc-newsletter-single-message__empty p {
    max-width: 580px;
    margin: 0;
    color: rgba(0, 0, 0, 0.64);
    font-size: 16px;
    line-height: 1.66;
}


/* =========================================================
   09. RELATED NEWSLETTERS
   ========================================================= */

.agr-kc-newsletter-single-related {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 92px 42px 104px;
    background:
        radial-gradient(circle at 14% 22%, rgba(38, 173, 33, 0.045), transparent 22rem),
        linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
}

.agr-kc-newsletter-single-related__inner {
    max-width: var(--kc-container-max-width, 1180px);
    margin: 0 auto;
}

.agr-kc-newsletter-single-related__heading {
    max-width: 760px;
    margin-bottom: 40px;
}

.agr-kc-newsletter-single-related__eyebrow {
    display: block;
    margin: 0 0 14px;
    color: var(--kc-green-main, #4a8a4a);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.agr-kc-newsletter-single-related__title {
    max-width: 760px;
    margin: 0;
    color: var(--kc-black, #000000);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 850;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.agr-kc-newsletter-single-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.agr-kc-newsletter-single-related-card {
    min-width: 0;
}

.agr-kc-newsletter-single-related-card__link {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 230px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(26, 48, 26, 0.1);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 247, 247, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 14px 32px rgba(0, 0, 0, 0.055);
    color: inherit;
    text-decoration: none;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.agr-kc-newsletter-single-related-card__link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 26px;
    bottom: 26px;
    width: 4px;
    background: transparent;
    transition: background 0.22s ease;
}

.agr-kc-newsletter-single-related-card__link:hover {
    border-color: rgba(74, 138, 74, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 20px 46px rgba(0, 0, 0, 0.075),
        0 0 38px rgba(74, 138, 74, 0.1);
    transform: translateY(-4px);
}

.agr-kc-newsletter-single-related-card__link:hover::before {
    background: var(--kc-green-accent, #26ad21);
}

.agr-kc-newsletter-single-related-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 20px;
    color: var(--kc-green-main, #4a8a4a);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.agr-kc-newsletter-single-related-card__meta span + span::before {
    content: "/";
    margin-right: 12px;
    color: rgba(0, 0, 0, 0.22);
}

.agr-kc-newsletter-single-related-card__title {
    display: block;
    color: var(--kc-black, #000000);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 25px;
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.agr-kc-newsletter-single-related-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 26px;
    color: var(--kc-green-main, #4a8a4a);
    font-family: var(--kc-font-body, Lato, Arial, sans-serif);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}

.agr-kc-newsletter-single-related-card__cta span {
    transition: transform 0.22s ease;
}

.agr-kc-newsletter-single-related-card__link:hover .agr-kc-newsletter-single-related-card__cta span {
    transform: translateX(3px);
}


/* =========================================================
   FINAL CTA — SHARED KNOWLEDGE CENTER STYLE
   ========================================================= */

.agr-kc-newsletter-final-cta {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0 42px;
    overflow: hidden;
    color: var(--kc-black, #000000);
    border: 0;
    border-top: 1px solid var(--kc-border);
    background:
        radial-gradient(
            circle at 78% 46%,
            rgba(255, 255, 255, 0.72) 0%,
            transparent 26%
        ),
        radial-gradient(
            circle at 38% 40%,
            rgba(255, 255, 255, 0.42) 0%,
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #f4f4f4 0%,
            #f0f0f0 100%
        );
}

.agr-kc-newsletter-final-cta__line {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 56px;
    color: rgba(74, 138, 74, 0.92);
    pointer-events: none;
}

.agr-kc-newsletter-final-cta__line-svg {
    display: block;
    width: 100%;
    height: 56px;
    overflow: visible;
}

.agr-kc-newsletter-final-cta__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 68px;
    align-items: end;
    max-width: var(--kc-container-max-width, 1180px);
    min-height: 255px;
    margin: 0 auto;
    padding: 62px 0 42px;
    overflow: visible;
    border: 0;
    background: transparent;
}

.agr-kc-newsletter-final-cta__content {
    position: relative;
    z-index: 2;
    max-width: 585px;
}

.agr-kc-newsletter-final-cta__label {
    display: block;
    margin: 0 0 18px;
    padding: 0;
    color: var(--kc-green-main, #4a8a4a);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.agr-kc-newsletter-final-cta__title {
    margin: 0 0 28px;
    color: var(--kc-black, #000000);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: clamp(34px, 4.2vw, 50px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.agr-kc-newsletter-final-cta__description {
    max-width: 500px;
    margin: 0;
    color: rgba(0, 0, 0, 0.62);
    font-family: var(--kc-font-body, Lato, Arial, sans-serif);
    font-size: 16px;
    line-height: 1.625;
}

.agr-kc-newsletter-final-cta__actions {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 8px;
}

.agr-kc-newsletter-final-cta__button {
    position: relative;
    display: inline-flex;
    gap: 34px;
    align-items: center;
    justify-content: space-between;
    min-width: 265px;
    min-height: 66px;
    padding: 0 30px;
    overflow: hidden;
    border-radius: 4px;
    font-family: var(--kc-font-body, Lato, Arial, sans-serif);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.agr-kc-newsletter-final-cta__button:hover {
    transform: translateY(-3px);
}

.agr-kc-newsletter-final-cta__button:focus-visible {
    outline: 2px solid var(--kc-green-accent, #26ad21);
    outline-offset: 4px;
}

.agr-kc-newsletter-final-cta__button--primary {
    color: #ffffff;
    border: 1px solid rgba(74, 138, 74, 0.72);
    background:
        linear-gradient(
            135deg,
            #4a8a4a 0%,
            #3f7d3f 58%,
            #1a301a 100%
        );
    box-shadow:
        0 16px 30px rgba(74, 138, 74, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.agr-kc-newsletter-final-cta__button--primary:hover {
    color: #ffffff;
    border-color: rgba(38, 173, 33, 0.72);
    background:
        linear-gradient(
            135deg,
            #26ad21 0%,
            #4a8a4a 54%,
            #1a301a 100%
        );
    box-shadow:
        0 20px 36px rgba(38, 173, 33, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.agr-kc-newsletter-final-cta__button--secondary {
    color: #24313f;
    border: 1px solid rgba(36, 49, 63, 0.18);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.72) 0%,
            rgba(244, 244, 244, 0.86) 100%
        );
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.agr-kc-newsletter-final-cta__button--secondary:hover {
    color: #24313f;
    border-color: rgba(74, 138, 74, 0.36);
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f5f5 100%
        );
    box-shadow:
        0 16px 30px rgba(26, 48, 26, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.agr-kc-newsletter-final-cta__button-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-1px);
    transition: transform 0.3s ease;
}

.agr-kc-newsletter-final-cta__button:hover
.agr-kc-newsletter-final-cta__button-icon {
    transform: translate(4px, -1px);
}

.agr-kc-newsletter-final-cta__watermark {
    position: absolute;
    top: 50px;
    right: 20px;
    bottom: auto;
    z-index: 1;
    color: rgba(26, 48, 26, 0.045);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: clamp(78px, 10vw, 138px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.08em;
    text-transform: lowercase;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 1180px) {
    .agr-kc-newsletter-final-cta__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        align-items: start;
        min-height: auto;
        padding-top: 70px;
    }

    .agr-kc-newsletter-final-cta__actions {
        justify-content: flex-start;
        padding-bottom: 0;
    }

    .agr-kc-newsletter-final-cta__watermark {
        top: 60px;
        right: 20px;
        font-size: 86px;
    }
}

@media (max-width: 820px) {
    .agr-kc-newsletter-final-cta {
        padding-right: 18px;
        padding-left: 18px;
    }

    .agr-kc-newsletter-final-cta__line,
    .agr-kc-newsletter-final-cta__line-svg {
        height: 44px;
    }

    .agr-kc-newsletter-final-cta__inner {
        padding-top: 58px;
        padding-bottom: 42px;
    }

    .agr-kc-newsletter-final-cta__title {
        font-size: 34px;
    }

    .agr-kc-newsletter-final-cta__actions {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .agr-kc-newsletter-final-cta__button {
        width: 100%;
        min-width: 0;
        min-height: 68px;
    }

    .agr-kc-newsletter-final-cta__watermark {
        top: 56px;
        right: 10px;
        font-size: 68px;
    }
}

@media (max-width: 560px) {
    .agr-kc-newsletter-final-cta__inner {
        padding-top: 52px;
        padding-bottom: 36px;
    }

    .agr-kc-newsletter-final-cta__label {
        font-size: 12px;
    }

    .agr-kc-newsletter-final-cta__title {
        font-size: 30px;
        line-height: 1.1;
    }

    .agr-kc-newsletter-final-cta__button {
        min-height: 64px;
        padding: 0 22px;
        font-size: 15px;
    }

    .agr-kc-newsletter-final-cta__button-icon {
        font-size: 24px;
    }

    .agr-kc-newsletter-final-cta__watermark {
        display: none;
    }
}


/* =========================================================
   11. ANIMATIONS
   ========================================================= */

@keyframes agrKcNewsletterSingleHeroSweep {
    0% {
        left: -38%;
        opacity: 0;
    }

    18% {
        opacity: 0.62;
    }

    48% {
        opacity: 0.24;
    }

    64% {
        left: 112%;
        opacity: 0;
    }

    100% {
        left: 112%;
        opacity: 0;
    }
}


/* =========================================================
   12. RESPONSIVE — LARGE
   ========================================================= */

@media (max-width: 1240px) {
    .agr-kc-newsletter-single-hero__layout {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(360px, 0.68fr);
        gap: 56px;
    }

    .agr-kc-newsletter-single-hero__title {
        font-size: clamp(46px, 5.6vw, 72px);
    }

    .agr-kc-newsletter-single-content-section__layout {
        grid-template-columns: 290px minmax(0, 1fr);
        gap: 34px;
    }
}


/* =========================================================
   13. RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1024px) {
    .agr-kc-newsletter-single-hero {
        min-height: auto;
        padding: 28px 28px 0;
    }

    .agr-kc-newsletter-single-hero__inner {
        min-height: auto;
        padding: 0 36px 82px;
    }

    .agr-kc-newsletter-single-hero__topbar {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 18px;
        min-height: 96px;
    }

    .agr-kc-newsletter-single-hero__topbar::after {
        right: -36px;
        left: -36px;
    }

    .agr-kc-newsletter-single-hero__label {
        display: none;
    }

    .agr-kc-newsletter-single-hero__badges {
        justify-self: end;
    }

    .agr-kc-newsletter-single-hero__layout {
        grid-template-columns: 1fr;
        gap: 54px;
        padding-top: 46px;
    }

    .agr-kc-newsletter-single-hero__content {
        max-width: 800px;
    }

    .agr-kc-newsletter-single-hero__panel {
        min-height: 440px;
    }

    .agr-kc-newsletter-single-hero__screen-stack {
        width: min(100%, 560px);
        transform: none;
    }

    .agr-kc-newsletter-single-content-section {
        padding: 72px 28px 92px;
    }

    .agr-kc-newsletter-single-content-section__layout {
        grid-template-columns: 1fr;
    }

    .agr-kc-newsletter-single-sidebar {
        position: relative;
        top: auto;
    }

    .agr-kc-newsletter-single-related {
        padding: 78px 28px 92px;
    }

    .agr-kc-newsletter-single-related__grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   14. RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 767px) {
    .agr-kc-newsletter-single-hero {
        min-height: auto;
        padding: 22px 18px 0;
    }

    .agr-kc-newsletter-single-hero__inner {
        padding: 0 24px 72px;
    }

    .agr-kc-newsletter-single-hero__topbar {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: start;
        min-height: auto;
        padding: 26px 0;
    }

    .agr-kc-newsletter-single-hero__topbar::after {
        right: -24px;
        left: -24px;
    }

    .agr-kc-newsletter-single-hero__back {
        font-size: 13px;
    }

    .agr-kc-newsletter-single-hero__badges {
        justify-self: start;
        justify-content: flex-start;
    }

    .agr-kc-newsletter-single-hero__badge {
        min-width: 140px;
        min-height: 44px;
        padding: 0 24px;
        font-size: 10px;
    }

    .agr-kc-newsletter-single-hero__layout {
        gap: 44px;
        padding-top: 36px;
    }

    .agr-kc-newsletter-single-hero__title {
        font-size: clamp(40px, 11vw, 58px);
    }

    .agr-kc-newsletter-single-hero__description {
        font-size: 15px;
    }

    .agr-kc-newsletter-single-hero__meta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .agr-kc-newsletter-single-hero__meta-item {
        min-width: 0;
    }

    .agr-kc-newsletter-single-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .agr-kc-newsletter-single-hero__button {
        width: 100%;
    }

    .agr-kc-newsletter-single-hero__panel {
        min-height: 390px;
    }

    .agr-kc-newsletter-single-hero__screen-stack {
        width: min(100%, 400px);
        min-height: 390px;
    }

    .agr-kc-newsletter-single-hero__screen {
        min-height: 390px;
    }

    .agr-kc-newsletter-single-hero__screen-body {
        padding: 20px;
    }

    .agr-kc-newsletter-single-preview__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .agr-kc-newsletter-single-preview__visual,
    .agr-kc-newsletter-single-preview__image-wrap,
    .agr-kc-newsletter-single-preview__image {
        min-height: 210px;
        height: 210px;
    }

    .agr-kc-newsletter-single-preview__content {
        padding: 22px 22px 24px 26px;
    }

    .agr-kc-newsletter-single-preview__title {
        font-size: 23px;
    }

    .agr-kc-newsletter-single-content-section {
        padding: 58px 18px 78px;
    }

    .agr-kc-newsletter-single-sidebar__box {
        padding: 28px 24px;
    }

    .agr-kc-newsletter-single-message__content {
        padding: 34px 26px;
    }

    .agr-kc-newsletter-single-message__content p,
    .agr-kc-newsletter-single-message__content ul,
    .agr-kc-newsletter-single-message__content ol {
        font-size: 16px;
    }

    .agr-kc-newsletter-single-message__empty {
        padding: 34px 26px;
    }

    .agr-kc-newsletter-single-related {
        padding: 64px 18px 78px;
    }

    .agr-kc-newsletter-single-related-card__link {
        min-height: 210px;
        padding: 28px 24px;
    }
}


/* =========================================================
   15. RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 560px) {
    .agr-kc-newsletter-single-hero--has-image {
        background-image:
            linear-gradient(
                90deg,
                rgba(10, 16, 11, 0.94) 0%,
                rgba(26, 48, 26, 0.88) 48%,
                rgba(10, 16, 11, 0.82) 100%
            ),
            var(
                --agr-kc-newsletter-single-banner-mobile-image,
                var(--agr-kc-newsletter-single-banner-image)
            ),
            linear-gradient(135deg, #111811 0%, #1a301a 100%);
    }

    .agr-kc-newsletter-single-hero__inner {
        padding: 0 20px 66px;
    }

    .agr-kc-newsletter-single-hero__topbar::after {
        right: -20px;
        left: -20px;
    }

    .agr-kc-newsletter-single-hero__badges {
        width: 100%;
    }

    .agr-kc-newsletter-single-hero__badge {
        flex: 1 1 145px;
        min-width: 0;
        padding: 0 18px;
    }

    .agr-kc-newsletter-single-hero__title {
        font-size: 38px;
        line-height: 1;
    }

    .agr-kc-newsletter-single-hero__meta {
        grid-template-columns: 1fr;
    }

    .agr-kc-newsletter-single-hero__panel {
        min-height: 350px;
    }

    .agr-kc-newsletter-single-hero__screen-stack {
        width: min(100%, 320px);
        min-height: 330px;
    }

    .agr-kc-newsletter-single-hero__screen-layer--back {
        transform: translate(20px, -24px) rotate(6deg);
    }

    .agr-kc-newsletter-single-hero__screen-layer--middle {
        transform: translate(10px, -12px) rotate(2deg);
    }

    .agr-kc-newsletter-single-hero__screen {
        min-height: 330px;
    }

    .agr-kc-newsletter-single-hero__screen-top {
        height: 44px;
        padding: 15px 17px;
    }

    .agr-kc-newsletter-single-hero__screen-body {
        padding: 16px;
    }

    .agr-kc-newsletter-single-preview__visual,
    .agr-kc-newsletter-single-preview__image-wrap,
    .agr-kc-newsletter-single-preview__image {
        min-height: 180px;
        height: 180px;
    }

    .agr-kc-newsletter-single-preview__content {
        padding: 20px 20px 22px 24px;
    }

    .agr-kc-newsletter-single-preview__title {
        font-size: 21px;
    }

    .agr-kc-newsletter-single-sidebar__title {
        font-size: 24px;
    }

    .agr-kc-newsletter-single-message__title,
    .agr-kc-newsletter-single-related__title {
        font-size: clamp(31px, 10vw, 42px);
    }

    .agr-kc-newsletter-single-message__content {
        padding: 30px 22px;
    }
}


/* =========================================================
   16. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .agr-kc-newsletter-single *,
    .agr-kc-newsletter-single *::before,
    .agr-kc-newsletter-single *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .agr-kc-newsletter-single-hero__screen,
    .agr-kc-newsletter-single-hero__button,
    .agr-kc-newsletter-single-hero__button:hover,
    .agr-kc-newsletter-single-sidebar__terms a,
    .agr-kc-newsletter-single-sidebar__terms a:hover,
    .agr-kc-newsletter-single-related-card__link,
    .agr-kc-newsletter-single-related-card__link:hover {
        transform: none !important;
    }
}

/* =========================================================
   HERO REFINEMENT — SINGLE SOURCE OF INFORMATION
   Details remain in the sidebar; the hero focuses on title,
   summary and a clear visual preview.
   ========================================================= */

.agr-kc-newsletter-single-hero {
    min-height: 650px;
}

.agr-kc-newsletter-single-hero__inner {
    min-height: 616px;
    padding-bottom: 72px;
}

.agr-kc-newsletter-single-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
    gap: clamp(42px, 5vw, 76px);
    padding-top: 48px;
}

.agr-kc-newsletter-single-hero__content {
    max-width: 760px;
}

.agr-kc-newsletter-single-hero__eyebrow {
    display: block;
    margin: 0 0 18px;
    color: var(--kc-green-accent, #26ad21);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.agr-kc-newsletter-single-hero__title {
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 800;
    line-height: 0.99;
}

.agr-kc-newsletter-single-hero__description {
    max-width: 620px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.625;
}

.agr-kc-newsletter-single-hero__actions {
    margin-top: 28px;
}

.agr-kc-newsletter-single-hero__panel {
    min-height: 400px;
}

.agr-kc-newsletter-single-hero__screen-stack {
    width: min(100%, 430px);
    min-height: 390px;
}

.agr-kc-newsletter-single-hero__screen {
    min-height: 390px;
}

.agr-kc-newsletter-single-hero__screen-body {
    display: flex;
    padding: 22px;
}

.agr-kc-newsletter-single-preview {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 298px;
    color: #ffffff;
    text-decoration: none;
}

.agr-kc-newsletter-single-preview--link {
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.agr-kc-newsletter-single-preview--link:hover,
.agr-kc-newsletter-single-preview--link:focus-visible {
    color: #ffffff;
    border-color: rgba(38, 173, 33, 0.55);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22), 0 0 34px rgba(38, 173, 33, 0.12);
    transform: translateY(-3px);
}

.agr-kc-newsletter-single-preview--link:focus-visible {
    outline: 2px solid var(--kc-green-accent, #26ad21);
    outline-offset: 5px;
}

.agr-kc-newsletter-single-preview__image-wrap,
.agr-kc-newsletter-single-preview__visual {
    flex: 1 1 auto;
    min-height: 250px;
}

.agr-kc-newsletter-single-preview__image {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.45s ease;
}

.agr-kc-newsletter-single-preview--link:hover .agr-kc-newsletter-single-preview__image {
    transform: scale(1.025);
}

.agr-kc-newsletter-single-preview__footer {
    position: relative;
    z-index: 5;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 16px 20px 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(10, 16, 11, 0.48);
}

.agr-kc-newsletter-single-preview__footer-label {
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--kc-font-heading, Inter, Arial, sans-serif);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.agr-kc-newsletter-single-preview__footer-action {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: #ffffff;
    font-family: var(--kc-font-body, Lato, Arial, sans-serif);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.agr-kc-newsletter-single-preview__footer-action span {
    color: var(--kc-green-accent, #26ad21);
    font-size: 18px;
    transition: transform 0.22s ease;
}

.agr-kc-newsletter-single-preview--link:hover .agr-kc-newsletter-single-preview__footer-action span {
    transform: translate(2px, -2px);
}

.agr-kc-newsletter-single-preview__footer-action--muted {
    color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 1024px) {
    .agr-kc-newsletter-single-hero__inner {
        padding-bottom: 70px;
    }

    .agr-kc-newsletter-single-hero__layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .agr-kc-newsletter-single-hero__panel {
        min-height: auto;
        justify-content: flex-start;
    }

    .agr-kc-newsletter-single-hero__screen-stack {
        width: min(100%, 620px);
        min-height: 360px;
        transform: none;
    }

    .agr-kc-newsletter-single-hero__screen {
        min-height: 360px;
    }
}

@media (max-width: 680px) {
    .agr-kc-newsletter-single-hero__inner {
        padding-bottom: 56px;
    }

    .agr-kc-newsletter-single-hero__layout {
        gap: 36px;
        padding-top: 36px;
    }

    .agr-kc-newsletter-single-hero__title {
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1;
    }

    .agr-kc-newsletter-single-hero__description {
        margin-top: 20px;
        font-size: 15px;
    }

    .agr-kc-newsletter-single-hero__screen-stack,
    .agr-kc-newsletter-single-hero__screen {
        min-height: 320px;
    }

    .agr-kc-newsletter-single-hero__screen-body {
        padding: 14px;
    }

    .agr-kc-newsletter-single-preview__image-wrap,
    .agr-kc-newsletter-single-preview__visual,
    .agr-kc-newsletter-single-preview__image {
        min-height: 210px;
    }

    .agr-kc-newsletter-single-preview__footer {
        min-height: 58px;
        padding: 14px 16px 14px 20px;
    }
}
