.wrap h2 {
    color: #0073aa;
}

/* SVG 크기 제어를 위한 CSS */
.svg-responsive {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.svg-responsive svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* 구텐베르그 블록에서 SVG 크기 제어 */
.wp-block-image .svg-responsive {
    width: 100%;
    height: auto;
}

.wp-block-image .svg-responsive svg {
    width: 100%;
    height: auto;
}

/* 특정 크기 클래스들 */
.svg-size-small {
    width: 50px !important;
    height: 50px !important;
}

.svg-size-medium {
    width: 100px !important;
    height: 100px !important;
}

.svg-size-large {
    width: 200px !important;
    height: 200px !important;
}

.svg-size-full {
    width: 100% !important;
    height: auto !important;
}

/* 인라인 SVG 컨테이너 */
.inline-svg {
    display: inline-block;
    vertical-align: middle;
}

.inline-svg svg {
    display: block;
    width: 100%;
    height: 100%;
}
