/*
 Theme Name:   Treecare Child
 Theme URI:    https://www.treecare.co.kr
 Description:  한성나무종합병원 Astra 자식 테마
 Author:       (주)한성나무종합병원
 Author URI:   https://www.treecare.co.kr
 Template:     astra
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  treecare-child
*/

/* 
--------------------------------------------------------------
이 아래에 사용자 정의 CSS 코드를 추가하세요.
--------------------------------------------------------------
*/

/* 
--------------------------------------------------------------
메인 페이지 전용 스타일
--------------------------------------------------------------
*/
.chart-container { position: relative; width: 100%; max-width: 800px; margin-left: auto; margin-right: auto; height: 300px; max-height: 40vh; }
@media (min-width: 768px) { .chart-container { height: 400px; } }
html { scroll-behavior: smooth; }
.gradient-text {
    background: linear-gradient(to right, #166534, #15803d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-link {
    position: relative;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #16a34a;
    transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}