/**
 * Sofia Implant Centre - Custom Page Styles
 *
 * Comprehensive CSS for all custom page templates.
 *
 * Design tokens (from Figma):
 *   Primary:          #00afc5
 *   Primary hover:    #0097aa
 *   Light BG 1:       #eff8fa
 *   Light BG 2:       #d0eef2
 *   Light BG 3:       rgba(208,238,242,0.66)
 *   Dark overlay:     rgba(65,65,65,0.36)
 *   Text dark:        #000 / #1e1e1e
 *   Text light:       #fff
 *   Font:             'Roboto', sans-serif (loaded by parent theme)
 *   Max content:      1132px (154px padding on 1440px viewport)
 *   Card radius:      30px
 *   Image radius:     25px
 *   Button radius:    24.5px
 *   Card shadow:      0px 0px 12px rgba(0,0,0,0.14)
 *   Team card shadow: 0px 0px 15.7px rgba(0,0,0,0.1)
 *   Button height:    45px (40px small)
 *   Button font:      20px bold
 */

/* ==========================================================================
   1. BASE / SHARED
   ========================================================================== */

.sic-page {
    width: 100%;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.sic-container {
    max-width: 1132px;
    margin: 0 auto;
    padding: 0 20px;
}

.sic-section-title {
    color: #00afc5;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

/* ---------- Buttons ---------- */

.sic-btn {
    display: inline-block;
    background: #00afc5;
    color: #fff;
    border: none;
    border-radius: 24.5px;
    padding: 10px 40px;
    height: 45px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    line-height: 1.25;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.sic-btn:hover,
.sic-btn:focus {
    background: #0097aa;
    color: #fff;
    text-decoration: none;
}

.sic-btn--small {
    height: 40px;
    padding: 8px 30px;
    font-size: 18px;
}

.sic-btn--white {
    background: #fff;
    color: #00afc5;
}

.sic-btn--white:hover,
.sic-btn--white:focus {
    background: #eff8fa;
    color: #0097aa;
}

.sic-btn--outline {
    background: transparent;
    border: 1px solid #00afc5;
    color: #00afc5;
}

.sic-btn--outline:hover,
.sic-btn--outline:focus {
    background: #00afc5;
    color: #fff;
}

/* ==========================================================================
   2. HOME PAGE  (.sic-home)
   ========================================================================== */

/* ---------- Hero ---------- */

.sic-hero {
    width: 100%;
    overflow: hidden;
}

.sic-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Each half is slightly wider than tall — the square video crops a small
       sliver from the top and bottom (object-fit: cover) so the hero isn't
       too tall on wide monitors. Tweak the ratio to taste:
       2 / 1 = perfect squares, 2.4 / 1 = ~17% vertical crop. */
    aspect-ratio: 2.3 / 1;
    width: 100%;
}

.sic-hero__video {
    position: relative;
    overflow: hidden;
    background: #000;
    width: 100%;
    height: 100%;
}

.sic-hero__video-el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
}

/* Watch Video pill button overlaid on hero video */
.sic-hero__watch-btn {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    height: 44px;
    background: rgba(0, 175, 197, 0.92);
    color: #fff;
    border: 0;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sic-hero__watch-btn:hover,
.sic-hero__watch-btn:focus-visible {
    background: #00afc5;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
    outline: none;
}

.sic-hero__watch-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #fff;
    color: #00afc5;
    border-radius: 50%;
}

.sic-hero__watch-btn-icon svg {
    width: 12px;
    height: 12px;
    margin-left: 1px; /* optical centering of play triangle */
}

/* Video modal (lightbox) */
.sic-video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.sic-video-modal[hidden] {
    display: none;
}

.sic-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.sic-video-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.sic-video-modal__frame {
    position: absolute;
    inset: 0;
}

.sic-video-modal__frame iframe,
.sic-video-modal__frame video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
}

.sic-video-modal__close {
    position: absolute;
    top: -42px;
    right: 0;
    width: 36px;
    height: 36px;
    line-height: 32px;
    text-align: center;
    background: transparent;
    color: #fff;
    border: 0;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
}

.sic-video-modal__close:hover,
.sic-video-modal__close:focus-visible {
    color: #00afc5;
}

body.sic-video-modal-open {
    overflow: hidden;
}

.sic-hero__thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
}

.sic-hero__thumb {
    position: relative;
    overflow: hidden;
}

.sic-hero__thumb:first-child {
    grid-column: 1 / -1;
}

.sic-hero__thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.sic-hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.sic-hero__thumb:hover img {
    transform: scale(1.05);
}

.sic-hero__thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 1;
}

.sic-hero__thumb .sic-hero__thumb-heading,
.sic-hero__thumb a .sic-hero__thumb-heading {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    pointer-events: none;
    z-index: 2;
}

/* ---------- Stats / Counters ---------- */

.sic-stats {
    padding: 70px 0;
    background: #eff8fa;
}

.sic-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
    text-align: center;
}

.sic-stats__item {
    padding: 10px;
}

.sic-stats__number {
    color: #00afc5;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}

.sic-stats__suffix {
    margin-left: 2px;
}

.sic-stats__label {
    color: #1e1e1e;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ---------- Welcome ---------- */

.sic-welcome {
    padding: 60px 0;
}

.sic-welcome__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.sic-welcome__content h2 {
    color: #00afc5;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sic-welcome__content p {
    font-size: 18px;
    line-height: 1.6;
    color: #1e1e1e;
}

.sic-welcome__form {
    background: #fff;
    border: 2px solid #00afc5;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.14);
}

.sic-welcome__form h3 {
    color: #00afc5;
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
}

.sic-welcome__form .wpcf7 input,
.sic-welcome__form .wpcf7 textarea,
.sic-welcome__form .wpcf7 select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0eef2;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.sic-welcome__form input:focus,
.sic-welcome__form textarea:focus,
.sic-welcome__form select:focus {
    outline: none;
    border-color: #00afc5;
    box-shadow: 0 0 0 2px rgba(0, 175, 197, 0.15);
}

/* ---------- Why Choose Us ---------- */

.sic-why-choose {
    padding: 60px 0;
    text-align: center;
}

.sic-why-choose__subtitle {
    color: #00afc5;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 4px;
}

.sic-why-choose__heading {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px;
    padding-top: 0;
    padding-bottom: 0;
}

.sic-why-choose__divider {
    width: 50px;
    height: 3px;
    background: #00afc5;
    margin: 0 auto 40px;
}

.sic-why-choose__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.sic-why-choose__item {
    text-align: center;
}

.sic-why-choose__icon {
    margin-bottom: 20px;
}

.sic-why-choose__icon .icon {
    width: 64px;
    height: 64px;
    color: #00afc5;
}

.sic-why-choose__item h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #000;
}

.sic-why-choose__item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* ---------- Smile Science Slider ---------- */

.sic-smile-science {
    padding: 60px 0;
}

.sic-smile-slider {
    margin: 0 -10px;
}

.sic-smile-slider .slick-slide {
    padding: 0 10px;
}

.sic-smile-card {
    width: 322px;
    position: relative;
}

.sic-smile-card__image {
    height: 384px;
    border-radius: 25px;
    overflow: hidden;
}

.sic-smile-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sic-smile-card__title {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    padding: 10px 0;
}

.sic-smile-card__btn {
    display: block;
    text-align: center;
    margin-top: 15px;
}

/* ---------- Treatment Steps ---------- */

.sic-treatment-steps {
    padding: 60px 0;
}

.sic-treatment-steps__subtitle {
    text-align: center;
    color: #00afc5;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.sic-treatment-steps__heading {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1e1e1e;
    margin: 0 0 48px;
}

.sic-treatment-steps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    position: relative;
}

.sic-treatment-steps__grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 11%;
    right: 11%;
    height: 2px;
    background: #dde6ee;
    z-index: 0;
}

.sic-treatment-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.sic-treatment-step__badge {
    width: 96px;
    height: 72px;
    border-radius: 999px;
    background: #00afc5;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(0, 175, 197, 0.3);
    padding: 8px 0;
}

.sic-treatment-step__badge-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.95;
}

.sic-treatment-step__badge-number {
    font-size: 26px;
    font-weight: 800;
    margin-top: 4px;
}

.sic-treatment-step__title {
    font-size: 18px;
    font-weight: 700;
    color: #1e1e1e;
    margin: 0 0 10px;
}

.sic-treatment-step__desc {
    font-size: 15px;
    line-height: 1.55;
    color: #555;
    margin: 0;
}

.sic-treatment-step__list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.sic-treatment-step__list li {
    position: relative;
    padding-left: 0;
}

.sic-treatment-step__list li + li {
    margin-top: 4px;
}

@media (max-width: 900px) {
    .sic-treatment-steps__grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .sic-treatment-steps {
        padding: 48px 0;
    }

    .sic-treatment-steps__heading {
        font-size: 26px;
        margin-bottom: 32px;
    }

    .sic-treatment-steps__grid {
        gap: 24px;
    }
}

/* ---------- Offers ---------- */

.sic-offers {
    padding: 60px 0;
}

.sic-offers__cta {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.sic-offer-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.14);
    display: grid;
    grid-template-columns: 389px 1fr;
    overflow: hidden;
    margin-bottom: 30px;
}

.sic-offer-card__image {
    border-radius: 25px;
    overflow: hidden;
    margin: 15px;
    aspect-ratio: 1 / 1;
}

.sic-offer-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sic-offer-card__content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sic-offer-card__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e1e1e;
}

.sic-offer-card__price {
    font-size: 24px;
    font-weight: 700;
    color: #00afc5;
    margin-bottom: 15px;
}

.sic-offer-card__desc {
    font-size: 16px;
    line-height: 1.6;
    color: #1e1e1e;
    margin-bottom: 20px;
}

/* ---------- Reviews ---------- */

.sic-reviews {
    padding: 60px 0;
}

/* ---------- Maps ---------- */

.sic-maps {
    width: 100%;
}

.sic-maps iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* ---------- Team Section (Home) ---------- */

.sic-team-section {
    padding: 60px 0;
}

.sic-team-slider {
    margin: 0 -15px;
}

.sic-team-slider .slick-slide {
    padding: 0 15px;
}

.sic-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .sic-team-grid {
        grid-template-columns: 1fr;
    }
}

.sic-team-member {
    text-align: center;
}

.sic-team-member__photo {
    width: 354px;
    height: 354px;
    border-radius: 25px;
    overflow: hidden;
    margin: 0 auto;
}

.sic-team-member__photo img,
.sic-team-member__photo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sic-team-member__name {
    font-size: 32px;
    font-weight: 700;
    padding: 0;
    margin: 8px 0 0;
    color: #1e1e1e;
}

.sic-team-member__role {
    margin-top: 2px;
}

.sic-team-member__role {
    color: #00afc5;
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

/* ---------- Happy Smiles Gallery ---------- */

/* ---------- Client Stories (Videos) ---------- */

.sic-stories {
    padding: 60px 0;
}

/* Desktop: 6-column grid with 2+3 repeating pattern */
.sic-stories__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Items 1,2 of each group of 5 → span 3 cols (2 per row) */
.sic-stories__item:nth-child(5n+1),
.sic-stories__item:nth-child(5n+2) {
    grid-column: span 3;
}

/* Items 3,4,5 of each group of 5 → span 2 cols (3 per row) */
.sic-stories__item:nth-child(5n+3),
.sic-stories__item:nth-child(5n+4),
.sic-stories__item:nth-child(5n) {
    grid-column: span 2;
}

.sic-stories__item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    padding-bottom: 56.25%; /* 16:9 */
}

.sic-stories__item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Desktop: show first 5 only */
.sic-stories:not(.sic-stories--expanded) .sic-stories__item:nth-child(n+6) {
    display: none;
}

/* Toggle button */
.sic-stories__toggle-wrap {
    text-align: center;
    margin-top: 30px;
}

.sic-stories__toggle-wrap[data-mobile-only] {
    display: none;
}

.sic-stories--expanded .sic-stories__toggle-wrap {
    display: none;
}

/* ---------- Happy Smiles ---------- */

.sic-smiles {
    padding: 40px 0 0;
    overflow: hidden;
}

.sic-smiles .sic-section-title {
    max-width: 1132px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.sic-smiles-slider {
    margin: 0;
    width: 100%;
}

.sic-smiles-slider .slick-slide {
    padding: 0;
    margin: 0;
}

.sic-smiles-slider .slick-list {
    margin: 0;
    padding: 0;
}

.sic-smiles-slider img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   3. SERVICES PAGE  (.sic-services)
   ========================================================================== */

.sic-page-title h1 {
    color: #00afc5;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    padding: 40px 0;
}

.sic-service-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.14);
    display: grid;
    grid-template-columns: 419px 1fr;
    overflow: hidden;
    margin-bottom: 30px;
}

.sic-service-card__image {
    border-radius: 25px;
    overflow: hidden;
    margin: 20px;
}

.sic-service-card__image img {
    width: 100%;
    height: 311px;
    object-fit: cover;
    display: block;
}

.sic-service-card__content {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sic-service-card__content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.sic-service-card__content h2 a {
    color: #000;
    text-decoration: none;
}

.sic-service-card__content h2 a:hover {
    color: #00afc5;
}

.sic-service-card__desc,
.sic-service-card__desc p,
.sic-service-card__desc li,
.sic-service-card__desc * {
    font-size: 16px;
    line-height: 1.6;
    color: #000 !important;
}

.sic-btn--service-cta {
    margin-top: 20px;
    align-self: flex-start;
    width: auto !important;
    padding-left: 60px;
    padding-right: 60px;
}

.sic-service-card__desc ul {
    list-style: disc;
    margin-left: 24px;
    margin-top: 10px;
}

.sic-service-card__desc ul li {
    margin-bottom: 5px;
}

/* ==========================================================================
   4. TEAM PAGE  (.sic-team-page)
   ========================================================================== */

/* ---------- Team Hero ---------- */

.sic-team-hero {
    position: relative;
    width: 100%;
    height: 572px;
    overflow: hidden;
}

.sic-team-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sic-team-hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.5) 100%);
}

.sic-team-hero__overlay h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

/* ---------- Team Featured ---------- */

.sic-team-featured {
    background: rgba(208, 238, 242, 0.66);
    padding: 50px 0;
}

.sic-team-featured__grid {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 40px;
    align-items: start;
}

.sic-team-featured__photo {
    border-radius: 25px;
    overflow: hidden;
}

.sic-team-featured__photo img,
.sic-team-featured__photo video {
    width: 100%;
    height: 361px;
    object-fit: cover;
    display: block;
}

.sic-team-featured__info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 5px;
}

.sic-team-featured__role {
    font-size: 20px;
    color: #666;
    margin-bottom: 10px;
}

.sic-team-featured__info {
    position: relative;
}

.sic-team-featured__phone {
    color: #00afc5;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    position: absolute;
    top: 0;
    right: 0;
}

.sic-team-featured__phone:hover {
    color: #0097aa;
    text-decoration: none;
}

.sic-team-featured__bio,
.sic-team-featured__bio p,
.sic-team-featured__bio * {
    font-size: 20px;
    line-height: 1.6;
    color: #000 !important;
}

.sic-team-featured__bio {
    margin-top: 15px;
}

.sic-team-featured__specialties {
    list-style: disc;
    margin: 15px 0 0;
    padding: 0 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 30px;
}

.sic-team-featured__specialties li {
    color: #00afc5;
    font-size: 20px;
}

/* ---------- Team Filters ---------- */

.sic-team-filters {
    padding: 30px 0;
    text-align: left;
}

.sic-filter-btn {
    display: inline-block;
    border-radius: 24.5px;
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #00afc5;
    background: transparent;
    color: #00afc5;
    font-family: 'Roboto', sans-serif;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.sic-filter-btn:hover {
    background: rgba(0, 175, 197, 0.1);
}

.sic-filter-btn.active {
    background: #00afc5;
    color: #fff;
}

/* ---------- Team Cards ---------- */

.sic-team-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 15.7px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 337px 1fr;
    overflow: hidden;
    margin-bottom: 30px;
}

.sic-team-card__photo {
    padding: 13px;
}

.sic-team-card__photo img,
.sic-team-card__photo video {
    width: 100%;
    height: 374px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

.sic-team-card__info {
    padding: 30px 40px;
    position: relative;
}

.sic-team-card__info h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 5px;
}

.sic-team-card__role {
    color: #00afc5;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sic-team-card__bio,
.sic-team-card__bio p,
.sic-team-card__bio * {
    font-size: 20px;
    line-height: 1.6;
    color: #000 !important;
}

.sic-team-card__specialties {
    list-style: disc;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 30px;
    margin: 15px 0;
    padding: 0 0 0 20px;
}

.sic-team-card__specialties li {
    color: #00afc5;
    font-size: 20px;
}

.sic-team-card__actions {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 12px;
}

.sic-team-card__action {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00afc5;
    transition: color 0.25s ease;
}

.sic-team-card__action:hover {
    color: #0097aa;
}

.sic-team-card__action svg {
    width: 24px;
    height: 24px;
}

/* ---------- Team CTA ---------- */

.sic-team-cta {
    background: #333;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Footer styles moved to style.css for global application */

.page:not(.home):not(.page-template-custompagett) #content {
    padding-bottom: 0 !important;
}

.sic-team-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.sic-team-cta__overlay {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.sic-team-cta h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 20px;
    opacity: 1 !important;
}

.sic-team-cta p {
    font-size: 24px;
    color: #fff !important;
    max-width: 913px;
    margin: 20px auto;
    line-height: 1.5;
    opacity: 1 !important;
}

.sic-team-cta .sic-btn--white {
    background: #fff !important;
    color: #00afc5 !important;
    opacity: 1 !important;
    border: none;
}

.sic-team-cta .sic-btn--white:hover {
    background: #00afc5 !important;
    color: #fff !important;
}

/* ==========================================================================
   5. SMILE SCIENCE PAGE  (.sic-smile-science-page)
   ========================================================================== */

.sic-smile-science-page .sic-smile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.sic-smile-science-page .sic-smile-grid .sic-service-card {
    grid-template-columns: 1fr;
}

.sic-smile-science-page .sic-smile-grid .sic-service-card__image {
    margin: 20px 20px 0;
}

.sic-smile-science-page .sic-smile-grid .sic-service-card__image img {
    height: 250px;
}

.sic-smile-science-page .sic-smile-grid .sic-service-card__content {
    padding: 20px 30px 30px;
}

/* ==========================================================================
   6. SINGLE TEMPLATES  (.sic-single-team, .sic-single-smile)
   ========================================================================== */

.sic-single-team,
.sic-single-smile {
    padding: 60px 0;
}

.sic-single-hero {
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 30px;
}

.sic-single-hero img,
.sic-single-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sic-single-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #1e1e1e;
}

.sic-single-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1e1e1e;
}

.sic-single-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #1e1e1e;
}

.sic-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
}

.sic-single-content ul,
.sic-single-content ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.sic-single-content ul li,
.sic-single-content ol li {
    margin-bottom: 8px;
}

.sic-related-slider {
    margin-top: 60px;
}

.sic-related-slider .slick-slide {
    padding: 0 15px;
}

/* ==========================================================================
   7. SLICK SLIDER OVERRIDES
   ========================================================================== */

.sic-page .slick-prev,
.sic-page .slick-next {
    width: 44px;
    height: 44px;
    background: #00afc5;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0.25s ease;
}

.sic-page .slick-prev:hover,
.sic-page .slick-prev:focus,
.sic-page .slick-next:hover,
.sic-page .slick-next:focus {
    background: #0097aa;
}

.sic-page .slick-prev {
    left: -22px;
}

.sic-page .slick-next {
    right: -22px;
}

.sic-page .slick-prev::before,
.sic-page .slick-next::before {
    font-size: 20px;
    color: #fff;
    opacity: 1;
}

.sic-page .slick-dots {
    bottom: -35px;
}

.sic-page .slick-dots li button::before {
    font-size: 10px;
    color: #d0eef2;
    opacity: 1;
}

.sic-page .slick-dots li.slick-active button::before {
    color: #00afc5;
    opacity: 1;
}

/* ==========================================================================
   8. RESPONSIVE — 1200px
   ========================================================================== */

@media (max-width: 1200px) {

    .sic-container {
        padding: 0 15px;
    }

    /* Hero */
    .sic-hero__thumb-heading {
        font-size: 20px;
    }

    /* Section titles */
    .sic-section-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    /* Welcome */
    .sic-welcome__content h2 {
        font-size: 30px;
    }

    /* Why Choose */
    .sic-why-choose__grid {
        gap: 25px;
    }

    .sic-why-choose__item h3 {
        font-size: 20px;
    }

    /* Smile card */
    .sic-smile-card {
        width: auto;
    }

    .sic-smile-card__image {
        height: 320px;
    }

    .sic-smile-card__title {
        font-size: 26px;
    }

    /* Offers */
    .sic-offer-card {
        grid-template-columns: 300px 1fr;
    }

    /* Services */
    .sic-service-card {
        grid-template-columns: 340px 1fr;
    }

    .sic-service-card__image img {
        height: 260px;
    }

    /* Team cards */
    .sic-team-card {
        grid-template-columns: 280px 1fr;
    }

    .sic-team-card__photo img,
    .sic-team-card__photo video {
        height: 320px;
    }

    .sic-team-card__info h3 {
        font-size: 26px;
    }

    /* Team member (home) */
    .sic-team-member__photo {
        width: 280px;
        height: 280px;
    }

    .sic-team-member__name {
        font-size: 26px;
    }

    /* Team CTA */
    .sic-team-cta h2 {
        font-size: 38px;
    }

    .sic-team-cta p {
        font-size: 20px;
    }

    /* Single */
    .sic-single-hero {
        height: 320px;
    }

    /* Smile Science page grid */
    .sic-smile-science-page .sic-smile-grid {
        gap: 20px;
    }
}

/* ==========================================================================
   9. RESPONSIVE — 768px (Tablet / Small)
   ========================================================================== */

@media (max-width: 768px) {

    /* Section padding */
    .sic-welcome,
    .sic-smile-science,
    .sic-offers,
    .sic-reviews,
    .sic-team-section,
    .sic-single-team,
    .sic-single-smile {
        padding: 40px 0;
    }

    /* Stats — stack to single column on mobile */
    .sic-stats {
        padding: 40px 0;
    }

    .sic-stats__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sic-stats__number {
        font-size: 42px;
    }

    .sic-stats__label {
        font-size: 16px;
    }

    /* Hero watch button — slightly smaller on mobile */
    .sic-hero__watch-btn {
        top: 14px;
        height: 38px;
        padding: 8px 16px;
        font-size: 14px;
    }

    .sic-why-choose {
        padding: 50px 0;
    }

    /* Titles */
    .sic-section-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .sic-page-title h1 {
        font-size: 28px;
        padding: 30px 0;
    }

    /* Hero — stack vertically on mobile, each block stays square */
    .sic-hero__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        aspect-ratio: auto;
    }

    .sic-hero__video {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .sic-hero__thumbs {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .sic-hero__grid .sic-hero__item:first-child {
        grid-row: auto;
    }

    .sic-hero__item {
        min-height: 200px;
    }

    .sic-hero__thumb-heading {
        font-size: 18px;
        left: 16px;
        right: 16px;
        bottom: 14px;
    }

    /* Team grid → slider on mobile */
    .sic-team-grid.slick-initialized {
        display: block;
        margin: 0 -8px;
    }

    .sic-team-grid.slick-initialized .slick-slide {
        padding: 0 8px;
    }

    /* Welcome */
    .sic-welcome__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sic-welcome__content h2 {
        font-size: 26px;
    }

    .sic-welcome__form h3 {
        font-size: 22px;
    }

    /* Why Choose */
    .sic-why-choose__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Smile card */
    .sic-smile-card__image {
        height: 280px;
    }

    .sic-smile-card__title {
        font-size: 24px;
    }

    /* Offers — single column */
    .sic-offer-card {
        grid-template-columns: 1fr;
    }

    .sic-offer-card__image {
        margin: 15px 15px 0;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Services — single column */
    .sic-service-card {
        grid-template-columns: 1fr;
    }

    .sic-service-card__image {
        margin: 15px 15px 0;
    }

    .sic-service-card__image img {
        height: 220px;
    }

    .sic-service-card__content {
        padding: 20px 25px 25px;
    }

    .sic-service-card__content h2 {
        font-size: 22px;
    }

    /* Team hero */
    .sic-team-hero {
        height: 300px;
    }

    .sic-team-hero__overlay h1 {
        font-size: 26px;
    }

    /* Team featured — single column */
    .sic-team-featured {
        padding: 40px 0;
    }

    .sic-team-featured__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sic-team-featured__photo img,
    .sic-team-featured__photo video {
        height: 300px;
    }

    .sic-team-featured__info h2 {
        font-size: 28px;
    }

    .sic-team-featured__phone {
        font-size: 20px;
    }

    .sic-team-featured__bio {
        font-size: 17px;
    }

    .sic-team-featured__specialties li {
        font-size: 17px;
    }

    /* Team cards — single column */
    .sic-team-card {
        grid-template-columns: 1fr;
    }

    .sic-team-card__photo {
        padding: 13px 13px 0;
    }

    .sic-team-card__photo img,
    .sic-team-card__photo video {
        height: 280px;
    }

    .sic-team-card__info {
        padding: 20px 25px 25px;
    }

    .sic-team-card__info h3 {
        font-size: 24px;
    }

    .sic-team-card__role {
        font-size: 17px;
    }

    .sic-team-card__bio {
        font-size: 17px;
    }

    .sic-team-card__specialties li {
        font-size: 17px;
    }

    .sic-team-card__email {
        top: 20px;
        right: 20px;
    }

    /* Team CTA */
    .sic-team-cta {
        padding: 60px 0;
    }

    .sic-team-cta h2 {
        font-size: 30px;
    }

    .sic-team-cta p {
        font-size: 18px;
    }

    /* Team member (home) */
    .sic-team-member__photo {
        width: 240px;
        height: 240px;
    }

    .sic-team-member__name {
        font-size: 22px;
    }

    .sic-team-member__role {
        font-size: 17px;
    }

    /* Stories — single column, show first 3 */
    .sic-stories__grid {
        grid-template-columns: 1fr;
    }

    .sic-stories__item {
        grid-column: span 1 !important;
    }

    .sic-stories:not(.sic-stories--expanded) .sic-stories__item:nth-child(n+4) {
        display: none;
    }

    .sic-stories__toggle-wrap[data-mobile-only] {
        display: block;
    }

    .sic-stories--expanded .sic-stories__toggle-wrap {
        display: none;
    }

    /* Happy smiles */
    .sic-smiles-slider img {
        height: 140px;
    }

    /* Single */
    .sic-single-hero {
        height: 250px;
    }

    .sic-single-content {
        font-size: 16px;
    }

    /* Smile Science page */
    .sic-smile-science-page .sic-smile-grid {
        grid-template-columns: 1fr;
    }

    /* Filters */
    .sic-filter-btn {
        font-size: 16px;
        padding: 8px 22px;
    }

    /* Slick arrows */
    .sic-page .slick-prev {
        left: -10px;
    }

    .sic-page .slick-next {
        right: -10px;
    }

    .sic-page .slick-prev,
    .sic-page .slick-next {
        width: 36px;
        height: 36px;
    }

    .sic-page .slick-prev::before,
    .sic-page .slick-next::before {
        font-size: 16px;
    }
}

/* ==========================================================================
   10. RESPONSIVE — 480px (Mobile)
   ========================================================================== */

@media (max-width: 480px) {

    .sic-container {
        padding: 0 12px;
    }

    .sic-section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .sic-page-title h1 {
        font-size: 24px;
        padding: 25px 0;
    }

    /* Buttons — full width */
    .sic-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 18px;
    }

    .sic-filter-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    /* Hero */
    .sic-hero__item {
        min-height: 160px;
    }

    .sic-hero__thumb-heading {
        font-size: 16px;
        left: 14px;
        right: 14px;
        bottom: 12px;
    }

    /* Welcome */
    .sic-welcome__content h2 {
        font-size: 22px;
    }

    .sic-welcome__content p {
        font-size: 15px;
    }

    .sic-welcome__form {
        padding: 20px;
    }

    .sic-welcome__form h3 {
        font-size: 20px;
    }

    /* Why Choose */
    .sic-why-choose__item h3 {
        font-size: 18px;
    }

    .sic-why-choose__item p {
        font-size: 14px;
    }

    /* Offer card */
    .sic-offer-card__title {
        font-size: 20px;
    }

    .sic-offer-card__price {
        font-size: 20px;
    }

    .sic-offer-card__content {
        padding: 20px;
    }

    /* Service card */
    .sic-service-card__content h2 {
        font-size: 20px;
    }

    .sic-service-card__image img {
        height: 180px;
    }

    /* Team hero */
    .sic-team-hero {
        height: 220px;
    }

    .sic-team-hero__overlay h1 {
        font-size: 22px;
    }

    /* Team featured */
    .sic-team-featured__info h2 {
        font-size: 24px;
    }

    .sic-team-featured__phone {
        font-size: 18px;
    }

    .sic-team-featured__bio,
    .sic-team-featured__specialties li {
        font-size: 15px;
    }

    /* Team card */
    .sic-team-card__photo img,
    .sic-team-card__photo video {
        height: 220px;
    }

    .sic-team-card__info h3 {
        font-size: 20px;
    }

    .sic-team-card__role,
    .sic-team-card__bio,
    .sic-team-card__specialties li {
        font-size: 15px;
    }

    /* Team CTA */
    .sic-team-cta {
        padding: 50px 0;
    }

    .sic-team-cta h2 {
        font-size: 24px;
    }

    .sic-team-cta p {
        font-size: 16px;
    }

    /* Team member (home) */
    .sic-team-member__photo {
        width: 200px;
        height: 200px;
    }

    .sic-team-member__name {
        font-size: 20px;
    }

    .sic-team-member__role {
        font-size: 15px;
    }

    /* Happy smiles */
    .sic-smiles-slider img {
        height: 110px;
    }

    /* Smile card */
    .sic-smile-card__image {
        height: 240px;
    }

    .sic-smile-card__title {
        font-size: 20px;
    }

    /* Single */
    .sic-single-hero {
        height: 200px;
        border-radius: 15px;
    }

    .sic-single-content {
        font-size: 15px;
    }

    .sic-single-content h2 {
        font-size: 22px;
    }

    .sic-single-content h3 {
        font-size: 18px;
    }

    /* Slick arrows — hide on small mobile, rely on swipe */
    .sic-page .slick-prev,
    .sic-page .slick-next {
        display: none !important;
    }
}

/* ---------- Custom Contact Form ---------- */

.sic-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sic-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.sic-form__field label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 5px;
    /* The blog/post context centers text; keep labels left-aligned everywhere. */
    text-align: left;
}

.sic-form__field input {
    width: 100%;
    height: 42px;
    border: 1px solid #bebcbc;
    border-radius: 0;
    padding: 0 12px;
    font-size: 14px;
    color: #000;
    background: #fff;
    box-sizing: border-box;
}

.sic-form__field input:focus {
    outline: none;
    border-color: #00afc5;
}

/* Tel field (reused from the call popup) inside the contact form — keep the
   shared component styling from call-popup.css instead of letting the generic
   .sic-form__field input rule above override it. */
.sic-form__field .sic-tel-field {
    margin-bottom: 0;
    border-radius: 0;
    border-color: #bebcbc;
}
.sic-form__field .sic-tel-field:focus-within {
    border-color: #00afc5;
}
.sic-form__field .sic-tel-field__trigger {
    height: auto;
    border-radius: 0;
    border-right: 1px solid #e3e3e3;
}
.sic-form__field .sic-tel-field__phone {
    height: 40px;
    border: 0;
    border-radius: 0;
}
.sic-form__field .sic-tel-field__search {
    height: auto;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
}

.sic-form__disclaimer p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.sic-form__consent label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

.sic-form__consent input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.sic-welcome__content .sic-btn {
    margin-top: 20px;
}

.sic-form__submit {
    text-align: left;
}

.sic-form__btn {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px !important;
}

.sic-form__success {
    color: #00afc5;
    font-weight: 700;
}

.sic-form__error {
    color: #e74c3c;
    font-weight: 700;
}

@media (max-width: 600px) {
    .sic-form__row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   OUR STORY PAGE
   ========================================================================== */

.sic-story-about {
    padding: 60px 0;
}

.sic-story-about__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.sic-story-about__content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px;
}

.sic-story-about__text {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
}

.sic-story-about__text h3 {
    font-size: 20px;
    margin: 20px 0 10px;
}

.sic-story-about__text ul {
    list-style: none;
    padding: 0;
}

.sic-story-about__text ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
}

.sic-story-about__text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 12px;
    background: #00afc5;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.485 26.841c-1.451 1.451-3.805 1.451-5.255 0l-8.142-8.142c-1.451-1.45-1.451-3.804 0-5.254s3.804-1.451 5.255 0l4.851 4.85c0.366 0.366 0.961 0.366 1.328 0l13.135-13.135c1.45-1.451 3.804-1.451 5.255 0 0.697 0.697 1.088 1.642 1.088 2.627s-0.391 1.93-1.088 2.627l-16.427 16.427z'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.485 26.841c-1.451 1.451-3.805 1.451-5.255 0l-8.142-8.142c-1.451-1.45-1.451-3.804 0-5.254s3.804-1.451 5.255 0l4.851 4.85c0.366 0.366 0.961 0.366 1.328 0l13.135-13.135c1.45-1.451 3.804-1.451 5.255 0 0.697 0.697 1.088 1.642 1.088 2.627s-0.391 1.93-1.088 2.627l-16.427 16.427z'/%3E%3C/svg%3E") no-repeat center;
}

.sic-story-about__gallery img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.sic-story-about__gallery {
    min-width: 0;
    overflow: hidden;
}

.sic-story-main-slider {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    max-width: 100%;
}

.sic-story-main-slider img {
    width: 100% !important;
    height: auto !important;
    display: block;
    border-radius: 15px;
}

/* Before Slick inits — hide all but first */
.sic-story-main-slider:not(.slick-initialized) > div:not(:first-child) {
    display: none;
}

.sic-story-thumb-slider {
    margin: 0 -4px;
    max-width: 100%;
}

.sic-story-thumb-slider .slick-slide {
    padding: 0 4px;
}

.sic-story-thumb-slider img {
    width: 100% !important;
    height: 70px !important;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.sic-story-thumb-slider .slick-current img {
    opacity: 1;
}

.sic-story-main-slider .slick-arrow {
    background: rgba(255,255,255,0.85) !important;
    border: none !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
    border-radius: 50% !important;
    z-index: 2;
    color: #00afc5 !important;
    font-size: 32px !important;
    line-height: 1 !important;
    width: 42px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.sic-story-main-slider .slick-arrow::before {
    display: none !important;
}

.sic-story-main-slider .slick-prev {
    left: 10px !important;
}

.sic-story-main-slider .slick-next {
    right: 10px !important;
}

/* Before Slick inits — show thumbs inline */
.sic-story-thumb-slider:not(.slick-initialized) {
    display: flex;
    gap: 8px;
    overflow: hidden;
}

.sic-story-thumb-slider:not(.slick-initialized) > div {
    flex: 0 0 18%;
}

.sic-story-about__grid--reversed {
    grid-template-columns: 1.5fr 1fr;
}

@media (max-width: 768px) {
    .sic-story-about__grid,
    .sic-story-about__grid--reversed {
        grid-template-columns: 1fr;
    }
}

/* Mobile: show team avatar/featured images in full (no fixed-height crop) */
@media (max-width: 768px) {
    .sic-team-card__photo img,
    .sic-team-card__photo video,
    .sic-team-featured__photo img,
    .sic-team-featured__photo video {
        height: auto;
        object-fit: contain;
    }
}

/* Subtitle line for the [sic_treatment_form] shortcode */
.sic-treatment-form-shortcode__subtitle {
    text-align: center;
    margin: -6px 0 18px;
    font-size: 15px;
    color: #444;
}
