.elementor-234 .elementor-element.elementor-element-9bbe58e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:20px 20px;--row-gap:20px;--column-gap:20px;--margin-top:40px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-234 .elementor-element.elementor-element-70c8db8{--display:flex;}.elementor-234 .elementor-element.elementor-element-df050eb{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:20px 20px;--row-gap:20px;--column-gap:20px;}.elementor-234 .elementor-element.elementor-element-5e670ee{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-f355303 */@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700&display=swap');

.clinic-hours-container {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1480px;
    margin: 0 auto;
    padding: 40px 20px;
}

.clinic-hours-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.clinic-hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #BBC9A3, #a8b694, #BBC9A3);
}

.clinic-hours-header {
    padding: 60px 60px 40px;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f3f4 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.clinic-hours-header::before {
    content: '🕐 📅 ⏰ 🏥 📞';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.clinic-hours-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.clinic-hours-subtitle {
    font-size: 1.2rem;
    color: #BBC9A3;
    font-weight: 500;
}

.clinic-hours-body {
    padding: 60px 60px 0;
}

.schedule-section {
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.schedule-header {
    text-align: center;
    margin-bottom: 40px;
}

.schedule-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.schedule-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.day-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    padding: 25px;
    border-left: 5px solid #BBC9A3;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.day-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(187, 201, 163, 0.2);
    background: linear-gradient(135deg, #fff, #fafbfc);
}

.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #BBC9A3, #a8b694);
    transition: width 0.3s ease;
}

.day-card:hover::before {
    width: 10px;
}

.day-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #BBC9A3;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.day-name::before {
    content: '📅';
    margin-right: 8px;
    font-size: 1.1rem;
}

.day-time {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
    line-height: 1.6;
}

.special-note {
    background: rgba(187, 201, 163, 0.1);
    border: 1px solid rgba(187, 201, 163, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
    font-size: 0.95rem;
    color: #666;
    position: relative;
}

.special-note::before {
    content: '⚠️';
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 1rem;
    opacity: 0.7;
}

.lunch-break {
    background: linear-gradient(135deg, rgba(187, 201, 163, 0.15), rgba(187, 201, 163, 0.08));
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lunch-break::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(187, 201, 163, 0.05) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.lunch-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.lunch-title::before {
    content: '🍽️';
    margin-right: 10px;
    font-size: 1.2rem;
}

.lunch-time {
    font-size: 1.2rem;
    color: #BBC9A3;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.info-section {
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 20px;
    padding: 35px;
    border-left: 6px solid #BBC9A3;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(187, 201, 163, 0.2);
}

.info-card::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(187, 201, 163, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #BBC9A3, #a8b694);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 4px 15px rgba(187, 201, 163, 0.3);
}

.info-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.info-content {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.highlight-box {
    background: rgba(187, 201, 163, 0.1);
    border: 1px solid rgba(187, 201, 163, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 15px 0;
    font-weight: 500;
    color: #2c3e50;
}

.phone-number {
    display: inline-flex;
    align-items: center;
    background: rgba(187, 201, 163, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.phone-number:hover {
    background: rgba(187, 201, 163, 0.25);
    transform: scale(1.05);
    color: #2c3e50;
    text-decoration: none;
}

.phone-number::before {
    content: '📞';
    margin-right: 8px;
    font-size: 1rem;
}

.clinic-hours-footer-section {
    background: linear-gradient(135deg, #BBC9A3, #a8b694);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;     
    min-height: 300px;
    padding: 40px;
    margin-top: 60px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.clinic-hours-footer-section::before {
    content: '🏥 ⏰ 💙 🌟 ✨';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.clinic-hours-footer-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 150%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

.clinic-hours-footer-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.clinic-hours-footer-text {
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .clinic-hours-container {
        padding: 20px 10px;
    }
    
    .clinic-hours-header,
    .clinic-hours-body {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .clinic-hours-footer-section {
        margin-left: -30px;
        margin-right: -30px;
        margin-bottom: -30px;
        padding: 40px 30px 50px 30px;
    }
    
    .clinic-hours-title {
        font-size: 2.2rem;
    }
    
    .schedule-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .day-card,
    .info-card {
        padding: 20px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.clinic-hours-fade-in {
    animation: fadeInUp 0.8s ease-out;
}/* End custom CSS */