/** top a video css */
.htc-story-section,
.htc-story-section * {
    box-sizing: border-box;
}

.htc-story-section {
    padding: 70px 20px;
    background: #f8fbfc;
   margin-top: -40px;
}

.htc-story-container {
    max-width: 1100px;
    margin: 0 auto;
}

.htc-story-header {
    text-align: center;
}

.htc-story-label {
    color: #0b8f91;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.htc-story-header h2 {
    margin: 15px 0;
    color: #102f50;
    font-size: clamp(32px, 5vw, 45px);
    line-height: 1.15;
}

.htc-story-header h2 span {
    color: #0b8f91;
}

.htc-line {
    width: 55px;
    height: 4px;
    margin: 25px auto;
    background: #0b8f91;
}

.htc-story-header p {
    max-width: 650px;
    margin: 0 auto;
    color: #667788;
    font-size: 18px;
    line-height: 1.7;
}

.htc-story-slider {
    position: relative;
    max-width: 1100px;
    margin: 45px auto 0;
    padding: 0 54px;
}

.htc-story-viewport {
    overflow: hidden;
    padding: 14px 4px 28px;
}

.htc-story-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.htc-story-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(16, 47, 80, 0.1);
}

.htc-story-image-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.htc-story-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #dfe9ec;
}

.htc-story-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.htc-story-image-link:hover img {
    transform: scale(1.025);
}

.htc-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 7px 12px;
    border-radius: 20px;
    background: #087f86;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.htc-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 66px;
    height: 66px;
    border: 3px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    background: #07969b;
    color: #fff;
    place-items: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.htc-play svg {
    width: 25px;
    height: 25px;
    margin-left: 3px;
    fill: currentColor;
}

.htc-time {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 5px 8px;
    border-radius: 8px;
    background: rgba(17, 17, 17, 0.88);
    color: #fff;
    font-size: 12px;
}

.htc-story-content {
    padding: 24px 28px 28px;
}

.htc-story-content h3 {
    margin: 0 0 9px;
    color: #102f50;
    font-size: 21px;
    line-height: 1.3;
}

.htc-author {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #72838c;
    font-size: 15px;
}

.htc-author svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.htc-story-content p {
    margin: 13px 0 0;
    padding: 0;
    color: #667788;
    line-height: 1.65;
}

.htc-story-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #0b8f91;
    cursor: pointer;
    place-items: center;
    transform: translateY(-50%);
    box-shadow: 0 8px 24px rgba(16, 47, 80, 0.16);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.htc-story-arrow:hover {
    background: #0b8f91;
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.htc-story-arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.htc-prev {
    left: 0;
}

.htc-next {
    right: 0;
}

.htc-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 26px 0 0;
}

.htc-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d3e0e3;
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.htc-dot.is-active {
    width: 36px;
    background: #0b999b;
}

.htc-disclaimer {
    display: flex;
    max-width: 992px;
    margin: 34px auto 0;
    padding: 18px 20px;
    border-radius: 16px;
    background: #eef7f8;
    color: #667788;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.htc-disclaimer-message {
    display: flex;
    min-width: 0;
    gap: 13px;
    align-items: flex-start;
}

.htc-disclaimer-message svg {
    flex: 0 0 21px;
    width: 21px;
    height: 21px;
    margin-top: 2px;
    fill: none;
    stroke: #0b8f91;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.htc-disclaimer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.htc-view-all {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 42px;
    width: 300px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #0aa79d;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.htc-view-all:hover,
.htc-view-all:focus-visible {
    background: #087f79;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.htc-view-all:focus-visible {
    outline: 3px solid rgba(10, 167, 157, 0.28);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .htc-story-section {
        padding: 45px 14px;
    }

    .htc-story-header p {
        font-size: 15px;
    }

    .htc-story-slider {
        padding: 0 8px;
    }

    .htc-story-viewport {
        padding: 12px 3px 24px;
    }

    .htc-story-track {
        gap: 18px;
    }

    .htc-story-card {
        flex-basis: 100%;
        box-shadow: none;
    }

    .htc-story-arrow {
        display: none;
    }

    .htc-story-content {
        padding: 21px 20px 24px;
    }

    .htc-story-content h3 {
        font-size: 21px;
    }

    .htc-disclaimer {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-top: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .htc-story-track,
    .htc-story-image img,
    .htc-story-arrow,
    .htc-dot {
        transition: none;
    }
}
/* footer module css */
.htc-footer,
.htc-footer * {
    box-sizing: border-box;
}

.htc-footer {
    margin: 0;
    border-top: 1px solid #d8ecec;
    background:
        radial-gradient(circle at 88% 15%, rgba(13, 169, 166, 0.12), transparent 30%),
        #f1f9f9;
    color: #526878;
}

.htc-footer-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.htc-footer-main {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 0.9fr 1.15fr;
    gap: 54px;
    padding: 42px 0 34px;
}

.htc-footer-brand img {
    display: block;
    width: 190px;
    height: auto;
}

.htc-footer-brand > p {
    max-width: 350px;
    margin: 17px 0 0;
    font-size: 14px;
    line-height: 1.75;
}

.htc-footer-note {
    margin-top: 18px;
    padding: 12px 14px;
    border-left: 3px solid #14aaa9;
    border-radius: 0 8px 8px 0;
    background: rgba(255, 255, 255, 0.66);
    color: #617584;
    font-size: 12px;
    line-height: 1.55;
}

.htc-footer-column h3 {
    margin: 4px 0 17px;
    color: #082f54;
    font-size: 15px;
}

.htc-footer-links {
    display: grid;
    gap: 11px;
}

.htc-footer-links a,
.htc-footer-contact a {
    color: #526878;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.htc-footer-links a:hover,
.htc-footer-links a:focus {
    color: #526878 !important;
    text-decoration: none;
}

.htc-footer-contact a:hover,
.htc-footer-contact a:focus {
    color: #173d5d !important;
    text-decoration: none;
}

.htc-footer-contact {
    display: grid;
    gap: 13px;
}

.htc-footer-contact-item {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 10px;
    align-items: center;
}

.htc-footer-icon {
    display: grid;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #dff2f2;
    color: #078d90;
    place-items: center;
}

.htc-footer-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.htc-footer-contact-item small {
    display: block;
    margin-bottom: 2px;
    color: #7b8d99;
    font-size: 11px;
}

.htc-footer-contact-item span,
.htc-footer-contact-item a {
    color: #173d5d;
    font-size: 14px;
    overflow-wrap: anywhere;
}

.htc-footer-bottom {
    background: #0b6670;
    color: #c7d9e5;
}

.htc-footer-bottom-inner {
    display: flex;
    width: min(1180px, calc(100% - 40px));
    min-height: 58px;
    margin: 0 auto;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.htc-footer-legal {
    display: flex;
    gap: 18px;
}

.htc-footer-legal a {
    color: #e3f7f5;
    text-decoration: none;
    cursor: pointer;
}

.htc-footer-legal a:hover,
.htc-footer-legal a:focus {
    color: #e3f7f5 !important;
    text-decoration: none;
}

@media (max-width: 920px) {
    .htc-footer-main {
        grid-template-columns: 1.35fr 1fr 1fr;
        gap: 34px;
    }

    .htc-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .htc-footer-wrap,
    .htc-footer-bottom-inner {
        width: min(100% - 28px, 1180px);
    }

    .htc-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px 24px;
        padding: 34px 0 30px;
    }

    .htc-footer-contact-column {
        grid-column: 1 / -1;
    }

    .htc-footer-bottom-inner {
        flex-direction: column;
        padding: 18px 0;
        gap: 10px;
        align-items: flex-start;
    }
}
