/*
Theme Name: m-shika
Theme URI: https://m-shika.cc
Author: m-shika
Author URI: https://m-shika.cc
Description: 望月歯科医院のオリジナルテーマ
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: m-shika
Tags: custom, dental, clinic, medical
*/

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

body {
    font-family: 'Zen Kaku Gothic Antique', 'Noto Sans JP', sans-serif;
    color: #675f41;
    line-height: 1.6;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #675f41;
}

hr {
    border: 1px solid var(--border-color);
}

/* Colors */
:root {
    --primary-color: #3cbbb2;
    --text-color: #675f41;
    --bg-light: #f1f9f9;
    --bg-beige: #fcf9ee;
    --border-color: #c0b99e;
    --text-light: #978e6d;
}

/* Header */
.site-header {
    max-width: 1263px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    box-sizing: content-box;
    white-space: nowrap;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo a {
    text-decoration: none;
}

.site-logo img {
    width: 40px;
    height: 40px;
}

.site-logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 3.12px;
}

/* Hamburger Menu Button */
.hamburger-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 29px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 2.8vw;
}

.main-navigation a{
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 2.08px;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.reservation-button {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #ffffff !important;
    padding: 9px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 3.12px;
    transition: opacity 0.3s !important;
}

.reservation-button:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    max-width: 1263px;
    margin: 40px auto;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 24px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(136, 207, 204, 0.6);
    mix-blend-mode: hue;
    z-index: 2;
    border-radius: 24px;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 125px 68px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
@media screen and (max-width: 768px) {
    .hero-section {
        border-radius: 0;
    }
    .hero-content {
        justify-content: center;
    }
}

.hero-intro {
    font-size: 18px;
    color: #ffffff;
    text-shadow: 0px 3px 5px #73a09d;
    margin-bottom: 20px;
    letter-spacing: 2.34px;
    line-height: 1.404;
    text-align: center;
    white-space: nowrap;
}

.hero-content-inner {
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    width: 100%;
    font-size: 62.517px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0px 4.076px 1.79px rgba(71, 99, 97, 0.34);
    margin-bottom: 40px;
    letter-spacing: 8.1272px;
    line-height: 0.6;
    text-align: center;
    white-space: nowrap;
}
@media screen and (max-width: 768px) {
    .hero-title {
        line-height: 1.284;
    }
}

.hero-title span {
    font-size: 43.762px;
    letter-spacing: 5.6891px;
    display: block;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;

    flex-wrap: wrap;
}
@
@media screen and (max-width: 768px) {
    .hero-features {
       position: absolute;
       bottom: 0;
    }
}
.feature-circle {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #fcf9ee;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 2.4px;
    line-height: 1.164;
    padding: 10px;
    box-sizing: border-box;
}

.feature-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 50%;
    border: 1px solid var(--border-color);
}
/* Section Styles */
.section {
    padding: 80px 200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 3.12px;
}

.section-bg-light {
    background-color: var(--bg-light);
}

/* Treatment Content */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 41px;
}

.treatment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.treatment-item h3 {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2.34px;
}

.treatment-item img {
    width: 100%;
    height: 187px;
    object-fit: cover;
    border-radius: 18px;
}

.treatment-item p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 2.08px;
}

/* Policy Section */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
}

.policy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.policy-icon {
    width: 212px;
    height: 212px;
    border-radius: 50%;
    background-color: var(--bg-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.policy-item h3 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2.34px;
    margin-top: 24px;
}

.policy-item p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 2.08px;
    margin-top: 16px;
    text-wrap: balance;
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 950px) {
    .about-section {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}
.about-image {
    width: 100%;
    height: 387px;
    object-fit: cover;
    border-radius: 20px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 2.08px;
}

.about-signature {
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 2.08px;
    text-align: right;
}

/* Calendar Section */
.calendar-section {
    background-color: var(--bg-beige);
    border-radius: 45px;
    padding: 63px 90px;
    position: relative;
}
@media screen and (max-width: 768px) {
    .calendar-section {
        padding: 40px 20px;
    }
}

.calendar-table {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
    .calendar-table {
        column-gap: 8px;
    }
}

.calendar-col{
    width: fit-content;
}


.calendar-time {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2.34px;
    text-align: center;
    min-width: 123px;
}
@media screen and (max-width: 768px) {
    .calendar-time {
        font-size: 14px;
    }
}
.calendar-time-note {
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 0.84px;
    text-align: center;
    margin-top: 5px;
}
@media screen and (max-width: 768px) {
    .calendar-time-note {
        font-size: 12px;
    }
}
.calendar-header {
    display: flex;
    align-items: center;
    gap: 65px;
    margin-left: 30px;
}

.calendar-header-label {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2.08px;
}

.calendar-day {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2.08px;
    text-align: center;
    justify-self: center;
}
.calendar-day-holiday::before {
    content: '日・祝';
}
@media screen and (max-width: 768px) {
    .calendar-day-holiday::before {
        content:'日\A祝';
        white-space: pre;
    }
    .calendar-day {
        font-size: 14px;
        white-space: nowrap;
    }
}
.status-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-color);
    flex-shrink: 0;
    justify-self: center;
}

.status-x {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    justify-self: center;
}

@media screen and (max-width: 768px) {
    .status-x ,
    .status-dot {
        width: 16px;
        height: 16px;
    }
}

.status-x::before,
.status-x::after {
    content: '';
    position: absolute;
    width: 17px;
    height: 2px;
    background-color: var(--text-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.status-x::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.calendar-legend {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 0.84px;
}

.calendar-legend .status-dot,
.calendar-legend .status-x {
    margin: 0;
}

.calendar-notes {
    width: fit-content;
    margin-left: auto;
}

.calendar-note {
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 1.82px;
    margin-top: 20px;
    line-height: 1.56;
}

/* News Section */
.news-list {
    max-width: 820px;
    margin: 0 auto;
}

.news-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    display: grid;
    grid-template-columns: 93px 90px 1fr;
    gap: 0;
    align-items: center;
}

.news-item a {
    color: var(--text-color);
    text-decoration: none;
}

.news-item a:hover {
    opacity: 0.7;
}

.news-date {
    font-size: 14px;
    letter-spacing: 1.82px;
    font-weight: 500;
}

.news-category {
    text-align: center;
    font-size: 14px;
    letter-spacing: 1.82px;
    font-weight: 500;
}

.news-title {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2.08px;
    margin-left: 20px;
}

.news-more-button {
    display: block;
    background-color: var(--text-color);
    color: #ffffff;
    padding: 9px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2.08px;
    text-align: center;
    margin: 40px auto 0;
    width: fit-content;
    transition: opacity 0.3s;
}

.news-more-button:hover {
    opacity: 0.8;
}

/* News Single Page (お知らせ詳細) */
.news-single-page {
    padding: 80px 20px 100px;
    background-color: #ffffff;
}

.news-single-inner {
    max-width: 1010px;
    margin: 0 auto;
}

.news-single-header {
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0 20px;
}

.news-single-title {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 3.12px;
    margin-bottom: 16px;
}

.news-single-meta-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.news-single-article {
    padding-top: 40px;
}

.news-single-content {
    font-size: 16px;
    letter-spacing: 2.08px;
    line-height: 2.06;
    color: var(--text-color);
}

.news-single-content p {
    margin-bottom: 16px;
}

.news-single-content h2 {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2.08px;
    color: var(--text-color);
    border-left: 2px solid var(--primary-color);
    padding-left: 10px;
    margin: 40px 0 24px;
}

.news-single-content h3 {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2.08px;
    color: var(--text-color);
    margin: 32px 0 16px;
}

.news-single-back {
    margin-top: 40px;
}

.news-single-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    letter-spacing: 2.08px;
    color: var(--text-color);
    text-decoration: none;
}

.news-single-back-link:hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .news-single-page {
        padding: 48px 16px 60px;
    }

    .news-single-header {
        padding-top: 24px;
    }

    .news-single-title {
        font-size: 20px;
        letter-spacing: 2.6px;
    }

    .news-single-meta-row {
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
        font-size: 14px;
    }
}

/* News List Page (お知らせ一覧) */
.news-list-page {
    padding: 80px 20px 100px;
    background-color: #fff;
}

.news-list-page-inner {
    max-width: 832px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.news-list-page-title {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 3.12px;
    color: var(--text-color);
    text-align: center;
    width: 100%;
}

.news-list-page .news-list {
    width: 100%;
}

.news-list-empty {
    color: var(--text-light);
    font-size: 16px;
    letter-spacing: 2.08px;
    text-align: center;
    padding: 40px 0;
}

/* Pagination */
.news-pagination {
    margin-top: 8px;
}

.news-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.news-pagination .nav-links a,
.news-pagination .nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.82px;
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.news-pagination .nav-links a:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.news-pagination .nav-links .current {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    cursor: default;
}

.news-pagination .nav-links .prev,
.news-pagination .nav-links .next {
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .news-list-page {
        padding: 48px 16px 60px;
    }

    .news-list-page-inner {
        gap: 32px;
    }

    .news-list-page-title {
        font-size: 20px;
        letter-spacing: 2.6px;
    }

    .news-item {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 16px 0;
    }

    .news-title {
        margin-left: 0;
    }

    .news-pagination .nav-links a,
    .news-pagination .nav-links span {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 13px;
    }
}

/* Access Section */
.access-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 41px;
    align-items: start;
}
@media (max-width: 950px) {
    .access-section {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
}

.access-map-wrapper{
    overflow: hidden;
    width: 100%;
    height: 100%;
    aspect-ratio: 500.00/312.40;
    border-radius: 38px;
}

.access-map-wrapper iframe{
    width: 100%;
    height: calc(100% + 300px);
    margin-top: -150px;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.access-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.access-info-item svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    margin-top: 3px;
}

.access-info-item p {
    font-size: 16px;
    letter-spacing: 2.08px;
    line-height: 25px;
}

.access-info-title {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2.86px;
    margin-bottom: 20px;
}

/* Phone CTA */
.phone-cta {
    background-color: var(--bg-beige);
    border-radius: 21px;
    padding: 35px 90px;
    margin: 80px auto;
    max-width: 910px;
    position: relative;
}
@media (max-width: 768px) {
    .phone-cta {
       margin-inline: 20px;
    }
}

.phone-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: nowrap;
}
@media (max-width: 768px) {
    .phone-cta-content {
        flex-direction: column;
    }
}

.phone-cta-text {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2.86px;
    line-height: 1.7;
    text-align: center;
    white-space: nowrap;
}

.phone-cta-divider {
    width: 1px;
    height: 105px;
    background-color: var(--border-color);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .phone-cta-divider {
        display: none;
    }
}

.phone-cta-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 19px;
}

.phone-cta-number {
    display: flex;
    align-items: center;
    gap: 19px;
}

.phone-cta-number svg {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .phone-cta-number {
        gap: 4px;
    }
    .phone-cta-number svg {
        width: 36px;
        height: 36px;
    }
}

.phone-cta-number a {
    display: block;
    font-size: 50.904px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 6.6175px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .phone-cta-number a {
        font-size: 32px;
    }
}
.phone-cta-note {
    font-size: 14px;
    color: var(--text-color);
    letter-spacing: 1.82px;
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: var(--bg-beige);
    padding-top: 40px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 68px;
}
@media (max-width: 950px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
        padding-inline: 20px;
    }
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 3.64px;
    margin-bottom: 20px;
}


.footer-info {
    font-size: 14px;
    letter-spacing: 1.82px;
    line-height: 25px;
    margin-bottom: 40px;
}

.footer-nav {
    display: flex;
    gap: 58px;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .footer-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-column a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 2.08px;
    line-height: 40px;
    white-space: nowrap;
}
@media screen and (max-width: 768px) {
    .footer-nav-column a {
        font-size: 14px;
    }
}

.footer-copyright {
    text-align: center;
    font-size: 10px;
    letter-spacing: 1.3px;
    color: var(--text-color);
    line-height: 40px;
    background-color: #FFFFFF;
}

/* Responsive */
@media (max-width: 1200px) {
    .section {
        padding: 60px 100px;
    }
    
    .treatment-grid,
    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 950px) {
    .hamburger-menu-toggle {
        display: flex;
    }
    
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        z-index: 999;
        background-color: #ffffff;
        padding: 16px 20px;
        margin: 0;
        box-sizing: inherit;
    }
    
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .main-navigation a {
        font-size: 18px;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .reservation-button {
        width: 100%;
        text-align: center;
        font-size: 18px;
        padding: 12px 24px;
    }
    
    .site-logo-text {
        font-size: 18px;
        letter-spacing: 2.34px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 20px;
    }
    
    .treatment-grid,
    .policy-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section,
    .access-section {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        margin: 0 auto;
        border-radius: 0;
        position: relative;
    }
    
    .hero-content {
        padding: 70px 20px 40px;
        min-height: 400px;
    }
    
    .hero-intro {
        font-size: 14px;
        letter-spacing: 1.82px;
        margin-bottom: 15px;
        line-height: 1.404;
    }
    
    .hero-title {
        font-size: 27.58px;
        letter-spacing: 3.59px;
        line-height: 1.284;
        margin-bottom: 30px;
    }
    
    .hero-title span {
        font-size: 22.66px;
        letter-spacing: 2.95px;
    }
    
    .hero-features {
        position: absolute;
        flex-direction: row;
        justify-content: center;
        gap: 8.6px;
        margin-top: 20px;
        width: 100%;
        bottom: -40px;
    }
    
    .feature-circle {
        width: 101px;
        height: 101px;
        font-size: 18px;
        letter-spacing: 0.94px;
        line-height: 1.164;
    }
    
    .hero-background {
        border-radius: 0;
        height: 100%;
    }
    
    .hero-overlay {
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 50px 16px 30px;
        min-height: 350px;
    }
    
    .hero-intro {
        font-size: 12px;
        letter-spacing: 1.56px;
    }
    
    .hero-title {
        font-size: 22px;
        letter-spacing: 2.86px;
    }
    
    .hero-title span {
        font-size: 18px;
        letter-spacing: 2.34px;
    }
    
    .hero-features {
        gap: 6px;
    }
    
    .feature-circle {
        width: 85px;
        height: 85px;
        font-size: 16px;
    }
}

