/* ============================================================
   MIGRATION THEME — Plain CSS converted from Archive design
   No Tailwind @apply, no old style.css
   Fonts: Inter (headings/default and font-body)
   Colors: primary #22A9AB, gray-10 #555, gray-30 #403F3F, gray-40 #F4F4F4
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.15s ease, opacity 0.15s ease; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-weight: 400; line-height: 1.2; font-family: 'Satoshi', sans-serif; }
p, li { font-family: 'Satoshi', sans-serif; }
.prose, .prose * { font-family: 'Satoshi', sans-serif; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
input, textarea, select, button { font-family: 'Satoshi', sans-serif; }
button { cursor: pointer; }
*:focus { outline: none; -webkit-tap-highlight-color: transparent; }

/* --- FONT CLASSES --- */
.font-body { font-family: 'Satoshi', sans-serif; }
.font-sans { font-family: 'Satoshi', sans-serif; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }
.italic { font-style: italic; }

/* --- CONTAINER --- */
.container-lg {
    margin: 0 auto;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 1518px;
}
@media (min-width: 640px) {
    .container-lg { padding-left: 1.5rem; padding-right: 1.5rem; }
}
.container {
    margin: 0 auto;
    width: 100%;
    padding-left: 1rem;
    padding-right: 2rem;
    max-width: 1224px;
}
@media (min-width: 1024px) {
    .container { padding-left: 2rem; padding-right: 2rem; }
}
.full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* --- COLOR UTILITIES --- */
.text-primary { color: #22A9AB; }
.text-gray-10 { color: #555; }
.text-gray-30 { color: #403F3F; }
.text-white { color: #fff; }
.text-black { color: #000; }
.bg-primary { background-color: #22A9AB; }
.bg-white { background-color: #fff; }
.bg-gray-40 { background-color: #F4F4F4; }
.bg-gray-50 { background-color: #F2F2F2; }
.bg-gradient-primary { background: linear-gradient(261deg, #22A9AB 27.34%, #0E4445 142.07%); }
.hover\:text-primary:hover { color: #22A9AB; }
.hover\:text-primary-hover:hover { color: #1f9193; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:no-underline:hover { text-decoration: none; }
.prose { max-width: none; }

/* --- PROSE (rich text) --- */
.prose h1,.prose h2,.prose h3,.prose h4,.prose h5,.prose h6 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-family: 'Satoshi', sans-serif;
}
@media (max-width: 639px) {
    .prose h1,.prose h2,.prose h3,.prose h4,.prose h5,.prose h6 {
        margin-top: 1.5rem; margin-bottom: 1rem;
    }
}
.prose h1 { font-size: 1.875rem; }
@media (min-width: 640px)  { .prose h1 { font-size: 2.5rem; } }
@media (min-width: 768px)  { .prose h1 { font-size: 3rem; } }
.prose h2 { font-size: 1.5rem; }
@media (min-width: 768px)  { .prose h2 { font-size: 2.5rem; } }
.prose h3 { font-size: 1.375rem; }
@media (min-width: 768px)  { .prose h3 { font-size: 1.5rem; } }
.prose h4 { font-size: 1.25rem; }
.prose h5 { font-size: 1.125rem; }
.prose h6 { font-size: 1rem; }
.prose h1 strong,.prose h2 strong,.prose h3 strong { color: #22A9AB; }
.prose a { color: #22A9AB; font-weight: 700; text-decoration: underline; }
.prose a:hover { text-decoration: none; }
.prose hr { margin: 2.5rem 0; border-color: #D0D0D0; }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose ul { list-style-type: disc; }
.prose ol { list-style-type: decimal; }
.prose li::marker { color: #555; }
.prose > *:first-child { margin-top: 0 !important; }

/* --- HEADER --- */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #E8E8E8;
}

/* Social */
.social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.875rem;
}
@media (min-width: 640px) { .social { gap: 0.75rem; } }
@media (min-width: 1600px) { .social { font-size: 17px; } }
.social ul { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .social ul { gap: 0.75rem; } }
.social ul > * { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .social ul > * { gap: 0.75rem; } }
.social ul > *:not(:last-child)::after { content: '/'; display: none; }
@media (min-width: 640px) { .social ul > *:not(:last-child)::after { display: block; } }
.social ul a { color: #555; }
.social ul a:hover { color: #22A9AB; }

/* Logo */
.logo img { max-width: 200px; }
@media (min-width: 1280px) { .logo img { max-width: 245px; } }
@media (min-width: 1600px) { .logo img { max-width: 345px; max-height: 75px; } }
.site-logo-img { max-width: 200px; width: 100%; }
@media (min-width: 640px) { .site-logo-img { max-width: 245px; } }
@media (min-width: 1280px) { .site-logo-img { max-width: 345px; } }

/* Lang switcher */
.lang .lang-menu { display: flex; align-items: center; gap: 0.875rem; }
.lang .lang-menu li a { color: #555; font-size: 0.875rem; display: block; text-decoration: none; }
@media (min-width: 1600px) { .lang .lang-menu li a { font-size: 17px; } }
.lang .lang-menu li.current a,
.lang .lang-menu li:hover a { color: #22A9AB; font-weight: 700; }

/* Top navigation */
.site-navigation .menu {
    display: flex;
    align-items: center;
    border-right: 1px solid #E8E8E8;
    margin-right: 50px;
    padding-right: 50px;
}
.site-navigation .menu li a {
    padding: 0 1.5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
}
@media (min-width: 1600px) { .site-navigation .menu li a { font-size: 17px; } }
.site-navigation .menu li.current-menu-item > a,
.site-navigation .menu li:hover > a { color: #22A9AB; }

/* Secondary navigation */
.secondary-navigation { max-width: 100%; width: 100%; overflow: hidden; }
.secondary-navigation .navigation-container { width: 100%; }
.secondary-navigation .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}
.secondary-navigation .menu li a {
    display: block;
    color: #403F3F;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}
@media (min-width: 1600px) { .secondary-navigation .menu li a { font-size: 1rem; } }
.secondary-navigation .menu li.current-menu-item > a,
.secondary-navigation .menu li:hover > a { color: #22A9AB; }

/* Hamburger */
.hamburger {
    padding: 0; border: none; margin: 0;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; width: 2rem; height: 2rem;
    background: transparent; overflow: visible;
    transition: all 0.15s ease;
}
@media (min-width: 1280px) { .hamburger { display: none !important; } }
.hamburger__body { width: 2rem; height: 2rem; display: inline-block; position: relative; }
.hamburger__inner {
    display: block;
    position: absolute;
    top: 21px; left: 0;
    width: 2rem; height: 1px;
    background: #000;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55,0.055,0.675,0.19);
}
.hamburger__inner::before {
    content: "";
    display: block;
    position: absolute;
    width: 2rem; height: 1px;
    background: #000;
    top: -9px;
    transition: top 0.12s 0.2s cubic-bezier(0.33333,0.66667,0.66667,1), transform 0.13s cubic-bezier(0.55,0.055,0.675,0.19);
}
.hamburger.is-active .hamburger__inner {
    top: 27px;
    transform: translate3d(0,-10px,0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215,0.61,0.355,1);
}
.hamburger.is-active .hamburger__inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top .1s cubic-bezier(.33333,0,.66667,.33333) .16s, transform .13s cubic-bezier(.215,.61,.355,1) .25s;
}

/* Mobile navigation */
.mob-navigation {
    display: none;
    position: fixed;
    top: 115px; left: 0;
    width: 100%; height: 100%;
    background: #fff;
    z-index: 90;
    overflow-y: auto;
}
.mob-navigation .menu li a {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    display: block;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}
.mob-navigation .menu li.current-menu-item a,
.mob-navigation .menu li:hover a { color: #22A9AB; }
.navigation-open .mob-navigation { display: block; }

/* --- BREADCRUMB --- */
.breadcrumb, .path_container {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    align-items: center;
    scrollbar-width: none;
    flex-wrap: wrap;
}
.breadcrumb::-webkit-scrollbar { display: none; }
.breadcrumb > *, .breadcrumb a,
.path_container a, .path_container > * {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #403F3F;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
}
@media (min-width: 640px) { .breadcrumb > *, .breadcrumb a, .path_container a, .path_container li > span { font-size: 1rem; } }
.breadcrumb > *:hover, .path_container a:hover { color: #22A9AB; }
.breadcrumb > *:last-child, .path_container li > span { color: #22A9AB; font-weight: 500; text-decoration: none; }
.path_container a, .path_container a span { color: #403F3F !important; font-weight: 400 !important; text-decoration: none !important; }
.breadcrumb > *:first-child,
.breadcrumb > *:first-child a { color: #403F3F !important; font-weight: 400 !important; text-decoration: none !important; }
.breadcrumb > *:last-child:hover, .path_container li > span:hover { text-decoration: none; }
.breadcrumb > *:not(:last-child)::after,
.path_container a::after { content: '/'; display: block; color: #403F3F; font-weight: 400; }

/* --- BUTTON --- */
.button, .wp-block-button .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: none;
    background: #22A9AB;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease;
    line-height: 1.25;
}
@media (min-width: 768px) {
    .button, .wp-block-button .wp-block-button__link {
        padding: 1.25rem 1.75rem;
        font-size: 1.0625rem;
    }
}
.button:hover, .wp-block-button .wp-block-button__link:hover { background: #1f9193; }
.button:disabled { background: #EDECE9; color: #ccc; cursor: not-allowed; }
.button--white { background: #fff; color: #000; height: 56px; }
.button--white:hover { background: #f0f0f0; color: #000; }

/* --- CARD IMAGE CONTAINERS --- */
.cnv {
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    height: 480px;
    background: #E8E8E8;
    display: block;
    position: relative;
}
@media (min-width: 768px) { .cnv { height: 500px; } }
.cnv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.3s ease;
}
.zoom-hover:hover .cnv img { transform: scale(1.05); }

.bg-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: block;
}
.bg-overlay::before {
    content: '' !important;
    display: block !important;
    border-radius: 10px !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 10 !important;
    height: 100% !important;
    width: 100% !important;
    max-height: 100% !important;
    background: linear-gradient(rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.00) 100%) !important;
    rotate: 180deg !important;
    pointer-events: none !important;
    transform: none !important;
}

/* --- HERO SWIPER --- */
.hero-swiper { overflow: hidden; }
.hero-swiper .swiper-slide { overflow: hidden; }
.hero-swiper .swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.hero-swiper .swiper-slide .bg::after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.20);
}
.hero-swiper .swiper-block {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    padding: 0 1rem;
}
@media (min-width: 640px)  { .hero-swiper .swiper-block { padding: 0 3.5rem; } }
@media (min-width: 1024px) { .hero-swiper .swiper-block { padding-left: 5rem; } }
@media (min-width: 1280px) { .hero-swiper .swiper-block { padding-left: 225px; } }
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next { display: none; }
@media (min-width: 640px) {
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next { display: flex; }
}
.hero-swiper .swiper-pagination { bottom: 1rem; }
@media (min-width: 640px) { .hero-swiper .swiper-pagination { bottom: 3rem; } }

/* --- NEWS SWIPER --- */
/* News/Events/Publications swiper - equal height image and text box */
.news-swiper .swiper-slide > div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 768px) {
    .news-swiper .swiper-slide > div {
        flex-direction: row;
        align-items: stretch;
        gap: 2.1875rem;
        height: 500px;
    }
}
.news-swiper .swiper-slide > div > a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    flex: 1;
    min-width: 0;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
}
@media (min-width: 768px) { .news-swiper .swiper-slide > div > a { height: 500px; min-height: 500px; max-height: 500px; } }
.news-swiper .swiper-slide > div > a img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 10px !important;
    display: block !important;
}
@media (min-width: 768px) {
    .news-swiper .swiper-slide > div > a img { height: 500px !important; }
}
.news-swiper .swiper-pagination { width: auto; position: unset; }
.news-swiper .swiper-button-prev,
.news-swiper .swiper-button-next { top: 33%; }
@media (min-width: 640px) {
    .news-swiper .swiper-button-prev,
    .news-swiper .swiper-button-next { top: 50%; }
}
.news-swiper .swiper-button-prev::before,
.news-swiper .swiper-button-next::before {
    width: 16px !important; height: 27px !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='27' viewBox='0 0 16 27' fill='none'%3e%3cpath d='M2.00004 2L13.4075 13.4074L2.00004 24.8148' stroke='%23A2A2A2' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e") !important;
}

/* Recommended swiper */
.recommend-swiper .swiper-button-prev,
.recommend-swiper .swiper-button-next { top: 33%; }

/* --- SWIPER GENERAL --- */
.swiper .swiper-wrapper,
.swiper .swiper-slide { height: auto; }
.swiper .swiper-pagination-bullet { background: #fff; opacity: 0.8; margin: 0 0.5rem; }
.swiper .swiper-pagination-bullet-active { background: #22A9AB; }
.swiper .swiper-pagination.pagination-gray .swiper-pagination-bullet { background: #ccc; opacity: 0.8; }
.swiper .swiper-pagination.pagination-gray .swiper-pagination-bullet-active { background: #22A9AB; }
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
    background: #fff;
    width: 44px; height: 44px;
    border-radius: 0;
    transition: background 0.15s;
}
.swiper .swiper-button-next:hover,
.swiper .swiper-button-prev:hover { background: #22A9AB; }
.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after { display: none !important; content: '' !important; }
.swiper .swiper-button-next::before,
.swiper .swiper-button-prev::before {
    content: '';
    width: 11px; height: 18px;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='11' height='18' viewBox='0 0 11 18' fill='none'%3e%3cpath d='M1.50005 1.5L8.96118 8.96113L1.50005 16.4223' stroke='%234F4F4F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.swiper .swiper-button-next:hover::before,
.swiper .swiper-button-prev:hover::before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='11' height='18' viewBox='0 0 11 18' fill='none'%3e%3cpath d='M1.50005 1.5L8.96118 8.96113L1.50005 16.4223' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.swiper .swiper-button-next svg,
.swiper .swiper-button-prev svg { display: none; }
.swiper .swiper-button-next { right: 0; }
.swiper .swiper-button-prev { left: 0; }

/* --- FORMS --- */
.form-element { display: block; width: 100%; }
.form-label { margin-bottom: 0.25rem; display: block; cursor: pointer; }
.form-input,
.form-textarea,
.form-select {
    display: block;
    width: 100%;
    height: 3rem;
    border: 1px solid #F2F2F2;
    background: #F2F2F2;
    border-radius: 5px;
    color: #7E7E7E;
    font-size: 0.875rem;
    padding: 0 1rem;
    font-family: 'Satoshi', sans-serif;
    transition: border-color 0.15s;
    outline: none;
}
@media (min-width: 640px) { .form-input, .form-textarea, .form-select { font-size: 1rem; padding: 0 1.75rem; } }
@media (min-width: 768px) { .form-input, .form-select { height: 70px; } }
.form-input:hover, .form-textarea:hover, .form-select:hover { border-color: #BCBCBC; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: #22A9AB; }
.form-input.wpcf7-not-valid, .form-textarea.wpcf7-not-valid { border: 2px solid #B42318 !important; }
.form-textarea {
    min-height: 150px;
    padding-top: 1rem;
    height: auto;
}
@media (min-width: 640px) { .form-textarea { min-height: 200px; padding-top: 1.5rem; } }
.form-select {
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10' fill='none'%3e%3cpath d='M1.5 1.49992L7.63289 7.63281L13.7658 1.49992' stroke='%23A2A2A2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center right 1rem;
    background-size: 16px 10px;
    appearance: none;
}
.wpcf7-not-valid-tip { display: none; }
.wpcf7-response-output { margin: 1.25rem 0; }
.wpcf7, form.wpcf7-form { }
.wpcf7 .wpcf7-response-output {
    visibility: hidden; position: relative; opacity: 0; top: 1rem;
    transition: all 0.3s ease; border: 2px solid transparent;
    margin: 1.25rem 0; padding: 0.25rem 1rem;
}
.wpcf7.invalid .wpcf7-response-output {
    top: 0; opacity: 1; visibility: visible;
    border-color: #dc2626; color: #b91c1c;
}
.wpcf7.sent .wpcf7-response-output {
    top: 0; opacity: 1; visibility: visible;
    border-color: #16a34a; color: #15803d;
}
.wpcf7-spinner { display: none; }

/* Choices.js */
.form-select-group .form-label { color: #403F3F; font-weight: 500; font-size: 1.125rem; }
@media (max-width: 639px) { .form-select-group .form-label { font-size: 0.875rem; } }
.form-select-group .choices[data-type="select-one"] .choices__inner {
    position: relative;
    border: 1px solid #F2F2F2;
    border-radius: 35px;
    background: #F2F2F2;
    height: 41px;
    padding: 0;
    font-size: 1rem;
    color: #000;
    transition: background 0.15s;
}
.form-select-group .choices[data-type="select-one"] .choices__inner:hover { background: #e4e4e4; }
.form-select-group .choices[data-type="select-one"] .choices__list--single {
    padding-left: 1.75rem;
    padding-right: 3.5rem;
    height: 100%;
    display: flex;
    align-items: center;
}
.form-select-group .choices[data-type="select-one"]::after {
    border: none !important;
    margin: 0 !important;
    width: 16px; height: 10px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10' fill='none'%3e%3cpath d='M1.5 1.49992L7.63289 7.63281L13.7658 1.49992' stroke='%23A2A2A2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 16px 10px;
    position: absolute !important;
    top: 50% !important;
    right: 1.5rem !important;
    transform: translateY(-50%) !important;
    transition: transform 0.3s ease;
}
.form-select-group .choices.is-open[data-type="select-one"]::after { transform: translateY(-50%) rotate(180deg) !important; }
.form-select-group.large-height .choices[data-type="select-one"] .choices__inner { height: 70px; }
@media (max-width: 639px) {
    .form-select-group.large-height .choices[data-type="select-one"] .choices__inner { height: 41px; }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background: #22A9AB; color: #fff;
}

/* Checkbox group */
.form-checkbox-group label { display: flex; align-items: flex-start; gap: 0.5rem; color: #555; font-size: 1rem; font-weight: 500; font-family: 'Satoshi', sans-serif; cursor: pointer; }
.form-checkbox-group input[type="checkbox"] { width: 1.25rem; height: 1.25rem; flex-shrink: 0; cursor: pointer; accent-color: #22A9AB; border-radius: 4px; }
.form-checkbox-group a { color: #22A9AB; font-weight: 700; text-decoration: underline; }
.form-checkbox-group a:hover { text-decoration: none; }
.form-checkbox-group .form-label, .form-checkbox-group .wpcf7-list-item-label { font-size: 0.875rem; font-weight: 400; margin-bottom: 0; cursor: pointer; color: #000; }

/* --- PAGINATION --- */
.pagination { padding-top: 1.5rem; border-top: 1px solid #D0D0D0; display: flex; flex-wrap: wrap; gap: 0; }
.pagination .screen-reader-text { display: none; }
.pagination .nav-links { display: flex; flex-wrap: wrap; }
.pagination .nav-links > *,
.pagination > .page-numbers,
.pagination > a,
.pagination > span {
    padding: 0 0.5rem;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid transparent;
    color: #797979;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.2s, border-color 0.2s;
    min-width: 2rem;
    height: 2.5rem;
}
.pagination .nav-links > *:not(.dots):hover,
.pagination > a.page-numbers:hover { color: #22A9AB; }
.pagination .nav-links > *.current,
.pagination > span.current,
.pagination > .page-numbers.current { color: #22A9AB; font-weight: 700; border-bottom-color: #22A9AB; }
.pagination .nav-links > *.dots,
.pagination > .page-numbers.dots { min-width: 1.5rem; align-items: flex-end; }
.pagination .nav-links > *.next,
.pagination .nav-links > *.prev,
.pagination > .prev,
.pagination > .next { display: none; }

/* --- CONTACT MAP IFRAME --- */
.contact-iframe { overflow: hidden; }
.contact-iframe iframe { width: 100%; height: 400px; display: block; border: 0; object-fit: cover; }
@media (min-width: 1024px) { .contact-iframe iframe { height: 100%; max-width: 1400px; } }

/* --- FOOTER --- */
.footer { }
.footer a { text-decoration: none; color: inherit; }
.footer a:hover { color: #22A9AB; }

/* Footer copyright */
.footer-copyright-text { margin: 0; }

/* --- FREE ANALYSIS SECTION --- */
.bg-gradient-primary h2 {
    font-size: clamp(1.75rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

/* --- MISC UTILITIES --- */
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.object-cover { object-fit: cover; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.block { display: block; }
.flex { display: flex; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.not-sr-only { position: static; width: auto; height: auto; padding: 0; margin: 0; overflow: visible; clip: auto; white-space: normal; }


/* Tailwind utility overrides for header nav visibility */
@media (min-width: 1280px) {
    .site-navigation,
    .secondary-navigation { display: block !important; }
}
@media (max-width: 1279px) {
    .site-navigation,
    .secondary-navigation { display: none !important; }
/* Social: icons on mobile, text on desktop */
.social ul li a span { display: none; }
.social ul li a svg { display: block; }
@media (min-width: 640px) {
    .social ul li a span { display: inline; }
    .social ul li a svg { display: none; }
}


/* News swiper text box */
@media (min-width: 768px) {
    .news-swiper .swiper-slide > div {
        flex-shrink: 0;
        width: 470px;
        max-width: 470px;
        height: 500px;
        max-height: 500px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    /* Inner content scrolls but button stays */
    .news-swiper .swiper-slide > div > div > .md\:max-w-\[371px\] {
        overflow: hidden;
        flex: 1;
        min-height: 0;
    }
}

/* Hide any stray text before the page wrapper */
body > *:not(#page):not(svg):not(script):not(style):not(noscript):not(div[style*="display:none"]) {
    display: none !important;
}

/* Remove stray checkmark from checkbox label */
.form-checkbox-group label::before,
.form-checkbox-group label::after,
.wpcf7-list-item label::before,
.wpcf7-list-item label::after { display: none !important; content: none !important; }

/* Hide CF7 checkmark icon */
.form-checkbox-group .fa-check,
.wpcf7-list-item .fa-check,
label.styled_checkbox .fa-check,
label.styled_checkbox span { display: none !important; }

/* Hide FontAwesome checkmark in checkbox */
.fa-check::before { content: none !important; display: none !important; }
.fa-check { display: none !important; width: 0 !important; height: 0 !important; }
label.styled_checkbox span { display: none !important; }

/* Hide EVERYTHING inside styled_checkbox except the actual input */
label.styled_checkbox > span,
label.styled_checkbox > i,
label.styled_checkbox > .fa { display: none !important; }
label.styled_checkbox input[type="checkbox"] {
    accent-color: #22A9AB;
    width: 1.25rem !important;
    height: 1.25rem !important;
    cursor: pointer;
}

/* Force hide FA checkmark - maximum specificity */
label.styled_checkbox span i.fa.fa-check,
label.styled_checkbox span i.fa-check,
.form-checkbox-group label span i,
.wpcf7-list-item label span i { display: none !important; font-size: 0 !important; width: 0 !important; height: 0 !important; }
label.styled_checkbox span i.fa-check::before,
.form-checkbox-group i.fa-check::before { content: "" !important; display: none !important; }

/* Hide any span/i inside checkbox label that is not the label text */
.form-checkbox-group label > span:not(.wpcf7-list-item-label),
.form-checkbox-group label > i,
.wpcf7-list-item label > span:not(.wpcf7-list-item-label),
.wpcf7-list-item label > i,
label.styled_checkbox > span,
label.styled_checkbox > i { display: none !important; width: 0 !important; height: 0 !important; overflow: hidden !important; }

/* Nuclear: hide pseudo-elements on styled_checkbox */
label.styled_checkbox::before,
label.styled_checkbox::after { display: none !important; content: none !important; }

/* Absolute nuclear - hide styled_checkbox span and all its children */
label.styled_checkbox span,
label.styled_checkbox span *,
label.styled_checkbox i,
label.styled_checkbox i::before,
label.styled_checkbox i::after {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    opacity: 0 !important;
    font-size: 0 !important;
    content: none !important;
}

/* Swiper section headings */
.swiper-section-title { font-size: 1.5rem; line-height: 1.2; }
@media (min-width: 640px) { .swiper-section-title { font-size: 1.875rem; } }
@media (min-width: 768px) { .swiper-section-title { font-size: 3rem; } }
@media (min-width: 1024px) { .swiper-section-title { font-size: 3.75rem; } }

/* Card title in news/events/publications swiper */
.card-title { font-size: 1.5rem; line-height: 1.3; }
@media (min-width: 1024px) { .card-title { font-size: 30px; line-height: 2.5rem; } }

/* Fix news-swiper arrows - prev points left, next points right */
.news-swiper.swiper .swiper-button-prev::before {
    transform: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='27' viewBox='0 0 16 27' fill='none'%3e%3cpath d='M13.9999 2L2.5925 13.4074L13.9999 24.8148' stroke='%23A2A2A2' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e") !important;
    width: 16px !important; height: 27px !important;
}
.news-swiper.swiper .swiper-button-next::before {
    transform: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='27' viewBox='0 0 16 27' fill='none'%3e%3cpath d='M2.00004 2L13.4075 13.4074L2.00004 24.8148' stroke='%23A2A2A2' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e") !important;
    width: 16px !important; height: 27px !important;
}

/* Modal prose - h2 dark, not teal */
.modal-prose h2 { color: #403F3F !important; }

@media (min-width: 768px) { .news-img-wrap { height: 500px !important; } }

/* News swiper: mobile 300px image, desktop equal height with text */
.news-img-wrap { height: 300px; }
@media (min-width: 768px) {
    .news-img-wrap { height: 500px; }
    .news-text-box { height: 500px; max-height: 500px; overflow: hidden; }
}

/* Force news swiper img height */
.news-swiper .swiper-slide img { height: 300px !important; object-fit: cover !important; }
@media (min-width: 768px) { .news-swiper .swiper-slide img { height: 500px !important; } }

/* Override tailwind rotate on prev arrow */
.news-swiper .swiper-button-prev::before { rotate: none !important; transform: none !important; }
.news-swiper .swiper-button-next::before { rotate: none !important; transform: none !important; }

/* News image: 300px mobile, 500px desktop - override inline style */
@media (min-width: 768px) {
    .news-swiper .swiper-slide > div > a img { height: 500px !important; max-height: 500px !important; }
}

/* Contacts map */
@media (min-width: 1024px) { .lg-map { display: block !important; } }
.contact-iframe iframe { width: 100%; height: 100%; min-height: 400px; display: block; border: 0; }

@media (min-width: 1024px) { .lg\:min-h-\[870px\] { min-height: 870px; } }
@media (min-width: 1024px) { .lg\:max-w-\[686px\] { max-width: 686px; } }
@media (min-width: 1024px) { .lg\:w-2\/5 { width: 40%; } }
@media (min-width: 1024px) { .lg\:w-6\/12 { width: 50%; } }
@media (min-width: 1280px) { .xl\:w-5\/12 { width: 41.666667%; } }

/* Hide styled_checkbox span always - checkmark shown by browser native */
.styled_checkbox span { display: none !important; }

/* Final fix - hide fa-check icon completely */
.styled_checkbox span,
.styled_checkbox span i,
.styled_checkbox span i.fa-check,
.styled_checkbox > span { display: none !important; visibility: hidden !important; }
.styled_checkbox span i::before,
.styled_checkbox span i.fa::before,
.styled_checkbox span i.fa-check::before { content: "" !important; display: none !important; }

/* HIDE CHECKMARK - override FontAwesome ::before content */
.wpcf7-list-item label .styled_checkbox,
label .styled_checkbox,
.styled_checkbox { position: static; overflow: hidden; }
.styled_checkbox span { display: none !important; }
.styled_checkbox span i { display: none !important; }
.styled_checkbox span i.fa { display: none !important; }
.styled_checkbox span i::before { content: none !important; font-size: 0 !important; }
.fa.fa-check { display: none !important; }
i.fa-check { display: none !important; }
i.fa-check::before { content: none !important; }

/* News list page - image 300px mobile, 500px desktop */
@media (min-width: 768px) {
    .news-list-img { height: 500px !important; }
}

/* News list - image 300px mobile, both 500px fixed desktop */
.news-list-img-wrap { flex: 1; min-width: 0; overflow: hidden; border-radius: 10px; height: 300px; }
.news-list-img { height: 300px !important; width: 100%; object-fit: cover; display: block; }
.news-list-text { height: auto; }
@media (min-width: 768px) {
    .news-list-img-wrap { height: 500px; }
    .news-list-img { height: 500px !important; }
    .news-list-text { height: 500px; max-height: 500px; overflow: hidden; }
}

/* Hero featured image - prevent overflow */
.hero-img-wrap {
    overflow: hidden;
    max-height: 600px;
}
.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (min-width: 1280px) {
    .hero-img-wrap {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        max-height: none;
        max-width: 600px;
    }
}

/* Hero image - limit max width */
.xl\:absolute.xl\:right-0.xl\:top-0.h-full.overflow-hidden img,
.xl\:absolute img.object-cover {
    max-width: 600px !important;
}

/* Hero side image - max-width only on desktop */
.hero-img-side { overflow: hidden; }
@media (min-width: 1280px) {
    .hero-img-side { width: 50vw; max-width: 50vw; }
    .hero-img-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
}

/* Fix hero wrapper positioning */
.hero-img-side {
    overflow: hidden;
}
@media (max-width: 1279px) {
    .hero-img-side {
        position: relative !important;
        width: 100%;
        max-height: 400px;
    }
    .hero-img-side img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
    }
}

/* Hero featured image - desktop max-width (old hero side image only) */
@media (min-width: 1280px) {
    .hero-side-img img.wp-post-image,
    .hero-img-side img.wp-post-image {
        max-width: 50vw !important;
    }
}


/* Carousel - 300px mobile only */
@media (max-width: 639px) {
    .hero-swiper .swiper-slide img { height: 300px !important; max-height: 300px !important; min-height: 300px !important; }
    .hero-swiper .swiper-slide { height: 300px !important; }
}

/* Testimonials - style content blocks as cards */
.testimonials-content > * {
    background: #22A9AB;
    border-radius: 10px;
    padding: 1rem;
    color: #fff;
}
@media (min-width: 640px) { .testimonials-content > * { padding: 1.5rem; } }
@media (min-width: 768px) { .testimonials-content > * { padding: 2.5rem; } }
.testimonials-content p,
.testimonials-content h1,
.testimonials-content h2,
.testimonials-content h3 { color: #fff !important; }
.testimonials-content a { color: #fff !important; }

/* Prevent horizontal scroll */
html, body { max-width: 100vw; overflow-x: hidden; }

/* Documents list styling */
.documents-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.documents-list li {
    position: relative;
    border-bottom: 1px solid #D0D0D0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-right: 160px;
    color: #403F3F;
    font-size: 1.5rem;
    line-height: 1.3;
}
@media (min-width: 768px) {
    .documents-list li { padding-top: 3.75rem; padding-bottom: 3.75rem; font-size: 2.5rem; padding-right: 200px; }
}
.documents-list li span.fa { display: none; }
.documents-list li br { display: none; }
.documents-list li a {
    position: absolute;
    right: 0;
    bottom: 2.5rem;
    color: #22A9AB;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: underline;
    white-space: nowrap;
}
@media (min-width: 768px) {
    .documents-list li a { bottom: 3.75rem; font-size: 1.375rem; }
}
.documents-list li a:hover { text-decoration: none; }

/* Hero featured image max-width */
img.h-full.w-full.object-cover.wp-post-image {
    max-width: 45vw;
}

/* Hero image wrapper - 45vw only on desktop (xl = 1280px+) */
@media (min-width: 1280px) {
    .hero-img-side-wrap { width: 45vw; max-width: 45vw; }
}

/* Hide CF7 floating submit button if it appears outside form */
.wpcf7-submit { position: static !important; }

/* Hide any floating/fixed contact buttons from plugins */
[class*="cf7-popup"],
[class*="floating-button"],
[class*="contact-button"],
[id*="cf7-popup"],
[id*="floating"] {
    display: none !important;
}

/* Hide fa-check icon in styled_checkbox - nuclear */
.wpcf7-form label.styled_checkbox,
.wpcf7-form .styled_checkbox { display: inline-flex !important; align-items: center !important; }
.wpcf7-form label.styled_checkbox > span,
.wpcf7-form .styled_checkbox > span { display: none !important; }
label.styled_checkbox > span { display: none !important; }

/* Hide styled_checkbox checkmark span */
.styled_checkbox span { display: none !important; }

/* Hide fa-check icon next to checkbox */
.form-checkbox-group .fa-check,
.form-checkbox-group i.fa,
.wpcf7-list-item .fa-check,
.wpcf7-list-item i.fa { display: none !important; }

/* Block dynamically added fa-check in forms */
.wpcf7-form label.styled_checkbox span,
form label.styled_checkbox span,
.form-checkbox-group label.styled_checkbox span { display: none !important; }

/* UAF form - style like contact form */
.uaf_ajax_form .inputs-container > div,
.uaf_ajax_form .row > div > div {
    margin-bottom: 1rem;
}
.uaf_ajax_form input[type="text"],
.uaf_ajax_form input[type="email"],
.uaf_ajax_form input[type="tel"],
.uaf_ajax_form textarea,
.uaf_ajax_form select {
    width: 100%;
    height: 60px;
    background: #F6F6F6;
    border: 1px solid #E8E8E8;
    border-radius: 5px;
    padding: 0 1.25rem;
    font-size: 1rem;
    color: #403F3F;
    outline: none;
    transition: border-color 0.2s;
    font-family: 'Satoshi', sans-serif;
}
.uaf_ajax_form input[type="text"]:focus,
.uaf_ajax_form input[type="email"]:focus,
.uaf_ajax_form input[type="tel"]:focus,
.uaf_ajax_form textarea:focus {
    border-color: #22A9AB;
}
.uaf_ajax_form label {
    display: block;
    font-size: 0.95rem;
    color: #403F3F;
    margin-bottom: 0.4rem;
    font-family: 'Satoshi', sans-serif;
}
.uaf_ajax_form .col-sm-5 label,
.uaf_ajax_form .col-sm-5 > label {
    padding-top: 18px;
}
.uaf_ajax_form .bordered-title {
    font-size: 1.5rem;
    color: #403F3F;
    border-bottom: 2px solid #22A9AB;
    padding-bottom: 0.75rem;
    margin: 2rem 0 1.5rem;
    font-weight: 400;
}
.uaf_ajax_form .f_21 {
    font-size: 1.1rem;
    color: #403F3F;
    margin-bottom: 1rem;
    font-weight: 500;
}
.uaf_ajax_form .gorz-separator {
    border-top: 1px solid #E8E8E8;
    margin: 1.5rem 0;
}
.uaf_ajax_form .radios-horz {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding-top: 10px;
}
.uaf_ajax_form .rh-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #403F3F;
    cursor: pointer;
}
.uaf_ajax_form #obtain_lithuanian_citizenship_submit,
.uaf_ajax_form .uaf_form_submit {
    background: #22A9AB;
    color: #fff;
    border: none;
    border-radius: 35px;
    height: 70px;
    padding: 0 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Satoshi', sans-serif;
}
.uaf_ajax_form #obtain_lithuanian_citizenship_submit:hover,
.uaf_ajax_form .uaf_form_submit:hover {
    background: #1a8a8c;
}
.uaf_ajax_form .text-right { text-align: right; }
.uaf_ajax_form .form_message { margin-bottom: 1rem; }

/* Global inputs - match contact form style */
input[type="text"]:not(.adminbar-input):not(.styled):not([class*="search"]),
input[type="email"]:not(.adminbar-input),
input[type="tel"]:not(.adminbar-input),
input[type="number"]:not(.adminbar-input),
input[type="url"]:not(.adminbar-input),
input[type="password"]:not(.adminbar-input),
input[type="date"]:not(.adminbar-input),
select:not([class*="choices"]):not([class*="lang"]):not([class*="select2"]),
textarea:not([class*="admin"]) {
    display: block;
    width: 100%;
    height: 3rem;
    border: 1px solid #F2F2F2 !important;
    background: #F2F2F2 !important;
    border-radius: 5px !important;
    color: #7E7E7E !important;
    font-size: 0.875rem;
    padding: 0 1rem !important;
    font-family: 'Satoshi', sans-serif !important;
    transition: border-color 0.15s;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
}
@media (min-width: 640px) {
    input[type="text"]:not(.adminbar-input):not(.styled):not([class*="search"]),
    input[type="email"]:not(.adminbar-input),
    input[type="tel"]:not(.adminbar-input),
    input[type="number"]:not(.adminbar-input),
    input[type="url"]:not(.adminbar-input),
    input[type="password"]:not(.adminbar-input),
    input[type="date"]:not(.adminbar-input),
    select:not([class*="choices"]):not([class*="lang"]):not([class*="select2"]) {
        font-size: 1rem;
        padding: 0 1.75rem !important;
        height: 70px;
    }
}
input[type="text"]:not(.adminbar-input):focus,
input[type="email"]:not(.adminbar-input):focus,
input[type="tel"]:not(.adminbar-input):focus,
input[type="number"]:not(.adminbar-input):focus,
input[type="date"]:not(.adminbar-input):focus,
textarea:not([class*="admin"]):focus {
    border-color: #22A9AB !important;
}
textarea:not([class*="admin"]) {
    height: auto !important;
    min-height: 150px;
    padding-top: 1rem !important;
}
@media (min-width: 640px) {
    textarea:not([class*="admin"]) {
        min-height: 200px;
        padding-top: 1.5rem !important;
        padding-left: 1.75rem !important;
        padding-right: 1.75rem !important;
    }
}

/* Hide swiper default arrow icons */
.swiper-button-prev::after,
.swiper-button-next::after { display: none !important; content: none !important; font-size: 0 !important; }

/* Override swiper-icons font arrows */
.swiper-button-prev::after,
.swiper-button-next::after {
    font-family: none !important;
    font-size: 0 !important;
    content: '' !important;
    display: none !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    font-size: 0 !important;
    content: '' !important;
    font-family: none !important;
    color: transparent !important;
}


/* Fix form button positioning in post content */
.prose form .button,
.prose form button[type="submit"],
.entry-content form .button,
.entry-content form button[type="submit"] {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Fix form button in post content - always in normal flow */
.entry-content form button[type="submit"],
.entry-content form input[type="submit"] {
    position: static !important;
    float: none !important;
    display: inline-flex !important;
    margin-top: 1rem;
}
.entry-content form .flex.sm\:justify-between {
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

/* Fix choices.js/autocomplete overriding button position */
form button[type="submit"].button {
    position: static !important;
    right: auto !important;
    top: auto !important;
    z-index: auto !important;
    width: auto !important;
    height: auto !important;
}
@media (min-width: 768px) {
    form button[type="submit"].button {
        height: 70px !important;
    }
}

/* choices.js overrides button - force fix */
.choices__button { position: absolute !important; }
button.button,
button[type="submit"].button,
form .button[type="submit"] {
    position: static !important;
    top: unset !important;
    right: unset !important;
    bottom: unset !important;
    left: unset !important;
    z-index: unset !important;
    transform: none !important;
}

/* choices.js sets button { position:absolute } globally - fix submit buttons */
button[type="submit"] { position: static !important; }

/* Minimal choices.js styles (full CSS disabled - was breaking button positioning) */
.choices { position: relative; }
.choices__inner { background: #F2F2F2; border: 1px solid #F2F2F2; border-radius: 5px; padding: 0 1rem; min-height: 60px; display: flex; align-items: center; cursor: pointer; }
.choices__list--dropdown { position: absolute; z-index: 100; background: #fff; border: 1px solid #E8E8E8; border-radius: 5px; width: 100%; top: 100%; left: 0; display: none; }
.choices__list--dropdown.is-active { display: block; }
.choices__item--choice { padding: 0.5rem 1rem; cursor: pointer; }
.choices__item--choice:hover { background: #f0faf9; color: #22A9AB; }
.choices__item--selectable.is-selected { background: #f0faf9; }

/* Hamburger button position fix */
.hamburger { position: static; }

/* Mobile menu items height fix */
.mob-navigation .menu { height: auto !important; }

/* Hero side image - limit height on smaller screens */
@media (max-width: 1279px) {
    .hero-side-img { max-height: 400px; }
    .hero-side-img img { max-height: 400px; object-fit: cover; }
}



/* Free analysis shortcode - full width breakout */
.entry-content .bg-gradient-primary {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    max-width: 100vw;
}

/* Free analysis shortcode button - no underline */
.bg-gradient-primary .button--white {
    text-decoration: none !important;
}
