/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    -webkit-font-smoothing: antialiased;
}

a:link { color:#131313 ; }
a:visited { color: #131313; }


@media (min-width: 1536px) {
    body {
        font-size: 18px;
    }
}

/* Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1024px) {
    .container {
        max-width: 984px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1160px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1280px;
    }
}

/* Header */
.header {
    background-color: rgb(255, 255, 255);
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 55px 0 0 0;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-left, .nav-right {
    width: 30%;
}

.nav-right {
    justify-content: flex-end;
}

.logo-container {
    display: flex;
    justify-content: center;
    width: 40%;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.031em;
    line-height: 1;
    margin: 0;
    padding: 8px 16px;
    width: fit-content;
    border: 1px solid rgb(21, 21, 21);
    color: rgb(21, 21, 21);
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    .logo-text {
        font-size: 30px;
    }
}

@media (min-width: 1280px) {
    .logo-text {
        font-size: 32px;
    }
}

@media (min-width: 1536px) {
    .logo-text {
        font-size: 24px;
    }
}

/* Desktop Navigation Links */
.nav-desktop-links {
    display: none;
    justify-content: center;
    padding: 21px 0 55px 0;
}

@media (min-width: 1024px) {
    .nav-desktop-links {
        display: block;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-item {
    margin-left: 32px;
}

.nav-item:first-child {
    margin-left: 0;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.214em;
    text-decoration: none;
    color: rgb(21, 21, 21);
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: rgb(0, 0, 0);
}

.nav-link.active {
    border-bottom-color: rgb(0, 0, 0);
}

@media (min-width: 1024px) {
    .nav-link {
        font-size: 14px;
    }
}

@media (min-width: 1280px) {
    .nav-link {
        font-size: 14px;
    }
}

@media (min-width: 1536px) {
    .nav-link {
        font-size: 16px;
    }
}

/* Mobile Header */
.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

@media (min-width: 1024px) {
    .mobile-header {
        display: none;
    }
}

.hamburger-container {
    width: 15%;
    padding: 0;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: inherit;
}

.hamburger-btn svg {
    width: 40px;
    height: 40px;
}

.mobile-logo-container {
    width: 70%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger-spacer {
    width: 15%;
}

/* Mobile Navigation Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(243, 243, 243);
    z-index: 10002;
    padding-top: 56px;
    overflow-y: auto;
    transform: translateX(-249vw);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 2px 6px 0px rgba(0, 0, 0, 0.2);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-panel {
    width: 100%;
    height: 100%;
    background: white;
    overflow-x: hidden;
    overscroll-behavior: none;
}

.mobile-nav-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: black;
    font-style: normal;
    line-height: 1.3em;
}

.mobile-nav-close svg {
    width: 32px;
    height: 32px;
}

.mobile-nav-content {
    padding: 32px;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(185, 185, 185, 0.5);
}

.mobile-nav-item:last-child {
    border-bottom: 0;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.136em;
    text-decoration: none;
    color: rgb(27, 27, 27);
    min-width: 200px;
    transition: color 0.2s ease;
}

@media (min-width: 768px) {
    .mobile-nav-link {
        font-size: 22px;
    }
}

@media (min-width: 1024px) {
    .mobile-nav-link {
        font-size: 22px;
    }
}

@media (min-width: 1280px) {
    .mobile-nav-link {
        font-size: 22px;
    }
}

@media (min-width: 1536px) {
    .mobile-nav-link {
        font-size: 24px;
    }
}

.mobile-nav-link:hover {
    color: rgb(0, 0, 0);
}

.mobile-nav-link.active {
    border-bottom: 1px solid rgb(0, 0, 0);
}

/* Hero Section */
.hero {
    padding: 0;
}

.hero-row {
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

@media (min-width: 768px) {
    .hero-row {
        flex-direction: row;
        min-height: unset;
    }
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex: 1;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 0.79921875 / 1;
    border-radius: 0;
    object-fit: cover;
    min-height: 400px;
    height: auto;
}

@media (min-width: 768px) {
    .hero-image-container {
        min-width: 65%;
    }
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 40px 24px 0 24px;
    background-color: rgb(243, 243, 243);
}

@media (min-width: 768px) {
    .hero-content {
        min-width: 360px;
        flex-basis: 360px;
        padding: 40px;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        min-width: 388px;
        flex-basis: 388px;
    }
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 750px;
}

.hero-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.023em;
    margin-bottom: 16px;
    white-space: pre-line;
    color: rgb(0, 0, 0);
    text-align: center;
}

@media (min-width: 768px) {
    .hero-tagline {
        font-size: 24px;
    }
}

.hero-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.023em;
    margin: 0 0 12px;
    color: rgb(0, 0, 0);
    text-align: center;
}

@media (min-width: 768px) {
    .hero-name {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .hero-name {
        font-size: 40px;
    }
}

.hero-subheadline {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgb(94, 94, 94);
    text-align: center;
    margin: 0 0 28px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subheadline {
        font-size: 13px;
    }
}

@media (min-width: 1024px) {
    .hero-subheadline {
        font-size: 14px;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 480px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
}

.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff !important;
    background-color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    border-radius: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: center;
    cursor: pointer;
}

.hero-btn:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0) !important;
}

.hero-btn-outline {
    background-color: transparent;
    color: rgb(0, 0, 0) !important;
}

.hero-btn-outline:hover {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255) !important;
}

/* Expertise Section */
.expertise-section {
    padding: 60px 0;
    background-color: rgb(255, 255, 255);
}

@media (max-width: 767px) {
    .expertise-section {
        padding: 48px 0;
    }
}

.expertise-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.023em;
    text-align: center;
    margin: 0 0 40px;
    color: rgb(0, 0, 0);
}

@media (min-width: 768px) {
    .expertise-heading {
        font-size: 30px;
        margin-bottom: 48px;
    }
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

.expertise-card {
    position: relative;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(230, 230, 230);
    border-top: 3px solid rgb(0, 0, 0);
    padding: 36px 24px 32px;
    text-align: left;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.expertise-card:hover {
    border-color: rgb(0, 0, 0);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.expertise-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: rgb(26, 26, 46);
    background-color: rgb(245, 245, 245);
    border: 1px solid rgb(224, 224, 224);
    border-radius: 50%;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.expertise-card:hover .expertise-card-icon {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border-color: rgb(0, 0, 0);
}

.expertise-card-title {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: rgb(0, 0, 0);
    margin: 0 0 16px;
}

.expertise-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgb(94, 94, 94);
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    .expertise-card,
    .expertise-card-icon {
        transition: none;
    }

    .expertise-card:hover {
        transform: none;
    }
}

/* Featured Media Coverage Section */
.featured-media-section {
    padding: 60px 0 80px;
    background-color: rgb(248, 248, 248);
}

@media (max-width: 767px) {
    .featured-media-section {
        padding: 48px 0 60px;
    }
}

.featured-media-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.023em;
    text-align: center;
    margin: 0 0 40px;
    color: rgb(0, 0, 0);
}

@media (min-width: 768px) {
    .featured-media-heading {
        font-size: 30px;
        margin-bottom: 48px;
    }
}

.featured-media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .featured-media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 24px;
    }
}

@media (min-width: 1024px) {
    .featured-media-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

.featured-media-cta {
    text-align: center;
    margin-top: 40px;
}

/* Content Section */
.content-section {
    padding: 40px 0;
}

@media (max-width: 767px) {
    .content-section {
        padding: 32px 0;
    }
}

.content-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

@media (min-width: 768px) {
    .content-grid {
        margin: 0 -24px;
    }
}

.content-cell {
    flex-basis: 100%;
    padding: 0 12px;
}

@media (min-width: 768px) {
    .content-cell {
        flex-basis: 83.33333333333334%;
        max-width: 83.33333333333334%;
        padding: 0 24px;
    }
}

.content-text {
    color: rgb(94, 94, 94);
    text-align: left;
    line-height: 1.5;
    font-size: 16px;
}

.content-text p {
    margin-bottom: 24px;
}

.content-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .content-text p {
        margin-bottom: 24px;
    }
}

/* Social Links Section */
.social-section {
    padding: 40px 0 80px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 40px 20px;
}

.social-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    display: grid;
    place-items: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-btn i,
.social-btn svg {
    width: 18px;
    height: 18px;
    line-height: normal;
    color: #fff;
    fill: #fff;
}

.social-btn::after,
.social-btn::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s, transform 0.18s;
}

.social-btn::after {
    content: attr(data-tooltip);
    bottom: 100%;
    margin-bottom: 6px;
    padding: 4px 10px;
    background: #1a1a2e;
    color: #fff;
    font-size: 12.5px;
    white-space: nowrap;
    border-radius: 5px;
    pointer-events: none;
}

.social-btn::before {
    content: '';
    bottom: 100%;
    margin-bottom: 0;
    border: 5px solid transparent;
    border-top-color: #1a1a2e;
}

.social-btn:hover::after,
.social-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

.social-btn:hover::after {
    transform: translateX(-50%) translateY(-4px);
}

.social-btn:hover::before {
    transform: translateX(-50%) translateY(-2px);
}

.social-btn.linkedin { background: #0A66C2; }
.social-btn.linkedin:hover { background: #004182; }
.social-btn.linktree { background: #43E660; }
.social-btn.linktree:hover { background: #2db84a; }
.social-btn.youtube { background: #FF0000; }
.social-btn.youtube:hover { background: #cc0000; }
.social-btn.x { background: #000000; }
.social-btn.x:hover { background: #333333; }
.social-btn.medium { background: #000000; }
.social-btn.medium:hover { background: #333333; }
.social-btn.crunchbase { background: #0288D1; }
.social-btn.crunchbase:hover { background: #016ba8; }
.social-btn.issuu { background: #F36E21; }
.social-btn.issuu:hover { background: #d45a12; }
.social-btn.f6s { background: #f16c4f; }
.social-btn.f6s:hover { background: #d4523a; }

/* Footer */
.footer {
    padding: 56px 0 40px;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #999;
    margin: 0 0 24px 0;
}

.footer-content {
    text-align: center;
}

.footer-text {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.083em;
    color: rgb(89, 89, 89);
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .footer-text {
        font-size: 12px;
    }
}

@media (min-width: 1024px) {
    .footer-text {
        font-size: 12px;
    }
}

@media (min-width: 1280px) {
    .footer-text {
        font-size: 12px;
    }
}

@media (min-width: 1536px) {
    .footer-text {
        font-size: 14px;
    }
}

/* About Page Layout */
.about-section {
    padding: 40px 0;
}

@media (max-width: 767px) {
    .about-section {
        padding: 32px 0;
    }
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

@media (min-width: 768px) {
    .about-grid {
        margin: 0 -24px;
    }
}

.about-image-cell {
    flex-basis: 100%;
    padding: 0 12px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .about-image-cell {
        flex-basis: 33.33333333333333%;
        max-width: 33.33333333333333%;
        padding: 0 24px;
        margin-bottom: 0;
    }
}

.about-image {
    width: 100%;
    max-width: 400px;
    border-radius: 7px;
    object-fit: cover;
}

.about-text-cell {
    flex-basis: 100%;
    padding: 0 12px;
}

@media (min-width: 768px) {
    .about-text-cell {
        flex-basis: 66.66666666666666%;
        max-width: 66.66666666666666%;
        padding: 0 24px;
    }
}

/* About Page - Text */
.about-text {
    color: rgb(94, 94, 94);
    text-align: left;
    line-height: 1.5;
    font-size: 16px;
}

.about-text p {
    margin-bottom: 24px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Richtext Content (News, Contact pages) */
.richtext-content {
    color: rgb(94, 94, 94);
    text-align: left;
    line-height: 1.5;
    font-size: 16px;
}

.richtext-heading {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.023em;
    margin-bottom: 16px;
    white-space: pre-line;
    color: rgb(0, 0, 0);
    text-align: center;
}

@media (min-width: 768px) {
    .richtext-heading {
        font-size: 24px;
    }
}

.richtext-heading-lg {
    font-size: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .richtext-heading-lg {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    .richtext-heading-lg {
        font-size: 30px;
    }
}

@media (min-width: 1280px) {
    .richtext-heading-lg {
        font-size: 32px;
    }
}

@media (min-width: 1536px) {
    .richtext-heading-lg {
        font-size: 36px;
    }
}

.richtext-heading-contact {
    font-size: 22px;
}

@media (min-width: 768px) {
    .richtext-heading-contact {
        font-size: 22px;
    }
}

@media (min-width: 1024px) {
    .richtext-heading-contact {
        font-size: 22px;
    }
}

@media (min-width: 1280px) {
    .richtext-heading-contact {
        font-size: 22px;
    }
}

@media (min-width: 1536px) {
    .richtext-heading-contact {
        font-size: 24px;
    }
}

.content-cell-offset {
    margin-left: 8.333333333333332%;
}

@media (min-width: 1024px) {
    .content-cell-offset {
        margin-left: 16.666666666666664%;
    }
}

.content-cell-news {
    flex-basis: 100%;
    padding: 0 12px;
}

@media (min-width: 768px) {
    .content-cell-news {
        flex-basis: 83.33333333333334%;
        max-width: 83.33333333333334%;
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .content-cell-news {
        flex-basis: 66.66666666666666%;
        max-width: 66.66666666666666%;
        margin-left: 16.666666666666664%;
    }
}

/* News List (legacy) */
.news-list {
    list-style: disc;
    padding-left: 24px;
    margin: 0;
}

.news-list li {
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-list li:last-child {
    margin-bottom: 0;
}

.news-list a {
    color: rgb(0, 0, 0);
    text-decoration: underline;
    font-weight: 400;
}

.news-list a:hover {
    color: rgb(48, 48, 48);
}

/* In the News — card grid */
.news-section {
    padding-top: 32px;
}

.news-page-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.news-page-header .richtext-heading {
    margin-bottom: 12px;
}

.news-page-intro {
    color: rgb(94, 94, 94);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 24px;
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 28px;
    }
}

.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(230, 230, 230);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: rgb(210, 210, 210);
}

.news-card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: rgb(245, 245, 245);
    flex-shrink: 0;
}

.news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.35s ease;
}

.news-card:hover .news-card-image {
    transform: scale(1.04);
}

.news-card-image--center {
    object-position: center center;
}

.news-card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 20px 20px 24px;
    text-align: left;
}

.news-card-publication {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(94, 94, 94);
    margin: 0 0 10px;
}

.news-card-title {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: rgb(0, 0, 0);
    margin: 0 0 12px;
}

.news-card-summary {
    font-size: 14px;
    line-height: 1.55;
    color: rgb(94, 94, 94);
    margin: 0 0 16px;
    flex: 1 1 auto;
}

.news-card-date {
    display: block;
    font-size: 13px;
    color: rgb(128, 128, 128);
    margin: 0 0 18px;
}

.news-card-btn {
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
    padding: 10px 20px;
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff !important;
    background-color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    border-radius: 0;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.news-card-btn:hover,
.news-card-btn:focus {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0) !important;
    border-color: rgb(0, 0, 0);
    outline: none;
}

.news-card-btn:focus-visible {
    outline: 2px solid rgb(0, 0, 0);
    outline-offset: 3px;
}

/* Contact Form */
.contact-form {
    margin-top: 24px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 16px;
    border: 1px solid rgb(185, 185, 185);
    border-radius: 0;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgb(0, 0, 0);
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 16px;
    color: rgb(128, 128, 128);
    pointer-events: none;
    transition: all 0.2s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 12px;
    font-size: 12px;
    background-color: rgb(255, 255, 255);
    padding: 0 4px;
    color: rgb(0, 0, 0);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff !important;
    background-color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    background-color: rgb(48, 48, 48);
    border-color: rgb(48, 48, 48);
}

.recaptcha-notice {
    margin-top: 16px;
    font-size: 12px;
    color: rgb(128, 128, 128);
}

.recaptcha-notice a {
    color: rgb(128, 128, 128);
    text-decoration: underline;
}

/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}