/* ---------- guides index ---------- */

.post-feature {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
    gap: 0;
    margin: 54px var(--gutter) 26px var(--gutter);
    background-color: white;
    border: 1px solid #e3e9ef;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.post-feature:hover {
    transform: translateY(-4px);
    border-color: #bcd6ea;
    box-shadow: 0 20px 46px rgba(10, 37, 64, 0.12);
}

.post-feature .shot {
    line-height: 0;
    overflow: hidden;
}

.post-feature .shot img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-feature:hover .shot img {
    transform: scale(1.04);
}

.post-feature .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 40px 42px;
}

.post-feature .text h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.22;
    color: #0d2b4a;
}

.post-feature .text p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(14px, 1.5vw, 15.5px);
    line-height: 1.75;
    color: #5a6b7d;
}

.tag {
    display: inline-flex;
    align-items: center;
    background-color: #eaf3fa;
    color: #0872bd;
    border-radius: 100px;
    padding: 5px 13px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.post-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    padding: 0 var(--gutter) 90px var(--gutter);
}

.post-list .post-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border: 1px solid #e3e9ef;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.post-list .post-card:hover {
    transform: translateY(-5px);
    border-color: #bcd6ea;
    box-shadow: 0 16px 38px rgba(10, 37, 64, 0.1);
}

.post-list .post-card .shot {
    line-height: 0;
    overflow: hidden;
}

.post-list .post-card .shot img {
    width: 100%;
    height: 178px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-list .post-card:hover .shot img {
    transform: scale(1.05);
}

.post-list .post-card .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 9px;
    padding: 22px 22px 20px 22px;
    flex: 1 1 auto;
}

.post-list .post-card h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(18px, 2vw, 21px);
    font-weight: 600;
    line-height: 1.32;
    color: #0d2b4a;
}

.post-list .post-card p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(13px, 1.4vw, 14px);
    line-height: 1.68;
    color: #5a6b7d;
}

.more {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: clamp(12px, 1.3vw, 13px);
    color: #0872bd;
    transition: gap 0.3s ease;
}

.post-card:hover .more,
.post-feature:hover .more {
    gap: 12px;
}

.more i {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.post-list .empty {
    font-family: "Montserrat", sans-serif;
    color: #5a6b7d;
}

/* ---------- a single guide ---------- */

.post {
    display: block;
    max-width: 760px;
    margin: 0 auto;
    padding: 50px 24px 90px 24px;
}

.post .post-head .eyebrow {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(10px, 1.1vw, 11.5px);
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #0872bd;
    margin-bottom: 12px;
}

.post .post-head h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(29px, 4.6vw, 46px);
    font-weight: 600;
    line-height: 1.18;
    color: #0d2b4a;
}

.post .post-meta {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #8996a5;
    margin-top: 14px;
}

.post .takeaway {
    background-color: #f4f8fb;
    border-left: 4px solid #0872bd;
    border-radius: 0 12px 12px 0;
    padding: 22px 24px;
    margin: 34px 0 10px 0;
}

.post .takeaway h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(11px, 1.2vw, 12px);
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #0872bd;
    margin-bottom: 9px;
}

.post .takeaway p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(15px, 1.7vw, 17px);
    line-height: 1.7;
    color: #0d2b4a;
    font-weight: 500;
}

.post .post-body section {
    margin-top: 40px;
}

.post .post-body h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(22px, 2.7vw, 29px);
    font-weight: 600;
    line-height: 1.3;
    color: #0d2b4a;
    margin-bottom: 14px;
}

.post .post-body p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(14.5px, 1.6vw, 16.5px);
    line-height: 1.85;
    color: #42556b;
    margin-bottom: 15px;
}

.post .post-faq {
    margin-top: 56px;
    padding-top: 34px;
    border-top: 1px solid #e3e9ef;
}

.post .post-faq h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(22px, 2.7vw, 29px);
    font-weight: 600;
    color: #0d2b4a;
    margin-bottom: 20px;
}

.post .post-faq .faq-item {
    padding: 18px 0;
    border-bottom: 1px solid #eef2f6;
}

.post .post-faq .faq-item h3 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(15px, 1.7vw, 17px);
    font-weight: 700;
    color: #0d2b4a;
    margin-bottom: 8px;
}

.post .post-faq .faq-item p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(14px, 1.5vw, 15.5px);
    line-height: 1.8;
    color: #42556b;
}

.post .post-cta {
    background-image: linear-gradient(125deg, #0a2540, #0d3a63);
    border-radius: 16px;
    padding: 34px 32px;
    margin-top: 52px;
}

.post .post-cta h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(21px, 2.5vw, 27px);
    font-weight: 600;
    color: white;
    margin-bottom: 9px;
}

.post .post-cta p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(13.5px, 1.5vw, 15px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.post .post-cta .buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.post .post-cta .call {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9px;
    text-decoration: none;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: clamp(13px, 1.4vw, 14.5px);
    transition: background-color 0.3s ease;
}

.post .post-cta .call:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.post .post-cta .related {
    margin-top: 18px;
    font-size: clamp(12.5px, 1.3vw, 13.5px);
    color: rgba(255, 255, 255, 0.6);
}

.post .post-cta .related a {
    color: #8cc3ee;
    text-decoration: none;
}

.post .post-cta .related a:hover {
    text-decoration: underline;
}

.post .post-disclaimer {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 1.75;
    color: #8996a5;
    margin-top: 28px;
}


.post .ai-note {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    line-height: 1.7;
    color: #a2adb9;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #eef2f6;
}


.post .inline-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 16px;
    background-color: #f4f8fb;
    border: 1px solid #dbe7f1;
    border-radius: 12px;
    padding: 20px 22px;
    margin-top: 34px;
}

.post .inline-cta p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(14px, 1.5vw, 15.5px);
    font-weight: 600;
    color: #0d2b4a;
    margin: 0;
    flex: 1 1 240px;
}

.post .inline-cta a {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 0 18px;
    background-color: #0872bd;
    color: white;
    border-radius: 9px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: clamp(12.5px, 1.4vw, 14px);
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.post .inline-cta a:hover {
    background-color: #0d5e97;
}

.post .inline-cta a.tel {
    background-color: transparent;
    color: #0872bd;
    border: 1px solid #bcd6ea;
}

.post .inline-cta a.tel:hover {
    background-color: #e8f1f8;
}


/* ---------- fixes ---------- */

/* .cta is only ever styled through parent-scoped selectors elsewhere, so inside
   a post it rendered as a raw browser link. Style it here explicitly. */
.post .post-cta .buttons a.cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 48px;
    padding: 0 24px;
    background-color: #0872bd;
    color: white;
    border-radius: 9px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: clamp(13px, 1.4vw, 14.5px);
    letter-spacing: 0.3px;
    text-transform: none;
    white-space: nowrap;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.post .post-cta .buttons a.cta:hover {
    background-color: #0a86dd;
    transform: translateY(-2px);
}

.post .post-cta .buttons a.cta i {
    display: flex;
    align-items: center;
    font-size: 19px;
}

/* readability: darker body copy, more room between lines, wider measure */
.post {
    max-width: 720px;
}

.post .post-body p {
    color: #2f4256;
    font-size: clamp(15.5px, 1.7vw, 17.5px);
    line-height: 1.9;
    margin-bottom: 19px;
}

.post .post-body h2 {
    margin-top: 6px;
    letter-spacing: -0.2px;
}

.post .post-body section {
    margin-top: 46px;
}

.post .post-faq .faq-item p {
    color: #2f4256;
    font-size: clamp(14.5px, 1.6vw, 16px);
    line-height: 1.85;
}

.post .takeaway p {
    color: #16324f;
    line-height: 1.75;
}

/* the small print was too faint to actually read */
.post .post-disclaimer {
    font-size: 12.5px;
    line-height: 1.8;
    color: #6b7a89;
}

.post .ai-note {
    font-size: 11.5px;
    color: #8b98a5;
}


/* ---------- visuals ---------- */

.post .post-hero {
    margin: 30px 0 6px 0;
    border-radius: 14px;
    overflow: hidden;
    line-height: 0;
}

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

.post .post-figure {
    margin: 44px 0 4px 0;
    border-radius: 14px;
    overflow: hidden;
    line-height: 0;
}

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

.post .post-steps {
    background-color: #f7fafc;
    border: 1px solid #e3e9ef;
    border-radius: 14px;
    padding: 28px 26px 22px 26px;
    margin-top: 42px;
}

.post .post-steps h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 1.3vw, 13px);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0872bd;
    margin-bottom: 18px;
}

.post .post-steps .step {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    padding: 13px 0;
    border-bottom: 1px solid #e8eef4;
}

.post .post-steps .step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post .post-steps .step .n {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    min-width: 29px;
    background-color: #0872bd;
    color: white;
    border-radius: 50%;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 13px;
}

.post .post-steps .step .text b {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(14.5px, 1.6vw, 16px);
    font-weight: 700;
    color: #0d2b4a;
    margin-bottom: 4px;
}

.post .post-steps .step .text p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(13.5px, 1.5vw, 15px);
    line-height: 1.75;
    color: #42556b;
    margin: 0;
}

.post .post-warning {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    background-color: #fdf6ec;
    border-left: 4px solid #d99a2b;
    border-radius: 0 12px 12px 0;
    padding: 20px 22px;
    margin-top: 40px;
}

.post .post-warning i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8801d;
    font-size: 19px;
    margin-top: 2px;
}

.post .post-warning b {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(11px, 1.2vw, 12px);
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #b8801d;
    margin-bottom: 6px;
}

.post .post-warning p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(14px, 1.5vw, 15.5px);
    line-height: 1.75;
    color: #5c4a2a;
    margin: 0;
}
