/********** 사업실적 **********/
.year_section {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease;
    position: relative;
}
.year_section.active {
    opacity: 1;
    transform: translateY(0);
}
.year_section + .year_section {
    margin-top: 56px;
}
.year_section .year_title {
    text-align: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 16px;
    position: sticky;
    top: 80px;
    z-index: 10;
    background: #eeeeee;
    padding: 24px 0;
}
.year_section .card_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.year_section .card_grid .card {
    position: relative;
    background: #fff;
    padding: 32px;
    border-radius: 10px;
    min-height: 171px;
    min-width: 0;
}
.year_section .card_grid .card > img {
    display: block;
    margin-bottom: 16px;
    width: 200px;
    height: 32px;
    object-fit: contain;
    object-position: left center;
}
.year_section .card_grid .card strong {
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}
.year_section .card_grid .card p {
    font-size: 18px;
    color: #333;
    word-break: keep-all;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.business_performance_detail_btn {
    position: absolute;
    top: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 108px;
    height: 32px;
    padding: 0 12px;
    border-radius: 100px;
    background: #f6f6f6;
    color: #333;
    font-size: 14px;
}
.business_performance_detail_btn:hover {
    background: #f2f6f4;
    color: #1a9058;
}
.business_performance_detail_btn:hover img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(68%) saturate(600%) hue-rotate(118deg) brightness(85%);
}

@media (max-width: 768px) {
    .year_section + .year_section {
        margin-top: 28px;
    }
    .year_section .year_title {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 0;
        top: 64px;
        padding: 20px 0;
    }
    .year_section .card_grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }
    .year_section .card_grid .card {
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        min-height: auto;
    }
    .year_section .card_grid .card > img {
        margin-bottom: 16px;
        width: 160px;
    }
    .year_section .card_grid .card strong {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .year_section .card_grid .card p {
        font-size: 15px;
        line-height: 20px;
    }
    .business_performance_detail_btn {
        position: static;
        height: 32px;
        margin-top: 16px;
        padding: 0 10px;
        gap: 4px;
        font-size: 13px;
    }
}

/********** PR센터 **********/
/* PR센터 - 수상 및 인증 */
.section_achievement {
    margin-bottom: 120px;
}
.section_achievement:last-child {
    margin-bottom: 0;
}
.achievement_title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}
.achievement_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 64px 40px;
}
.achievement_item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.achievement_img {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.achievement_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.achievement_item:hover .achievement_img img {
    transform: scale(1.03);
}
.achievement_desc {
    font-size: 18px;
    line-height: 22px;
}

/* PR센터 공통 - 검색바 */
.list_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.list_header .list_total {
    font-size: 15px;
    color: #555;
}
.list_header .list_total strong {
    font-weight: 700;
}
.list_header .list_search {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 100px;
    overflow: hidden;
    padding: 6px 6px 6px 20px;
    gap: 8px;
    background: #fff;
    position: relative;
}
.list_header .list_search_input {
    width: 330px;
    border: none;
    padding: 0 32px 0 0;
    height: 42px;
}
.list_header .list_search_input::placeholder {
    color: #777;
}
.list_header .list_search_clear,
.list_header .list_search_btn {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}
.list_header .list_search_btn {
    width: 36px;
    height: 36px;
    background: #333;
}
.list_header .list_search_btn img {
    width: 18px;
    height: 18px;
}
.list_header .list_search_clear img {
    width: 24px;
    height: 24px;
}
.list_header .list_search_clear {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 50px;
}
.list_empty {
    min-height: 220px;
    border-top: 1px solid #555;
    border-bottom: 1px solid #ddd;
    color: #777;
    font-size: 18px;
    text-align: center;
}
.list_empty p {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

/* PR센터 - 뉴스 */
.news_featured {
    display: flex;
    gap: 64px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 72px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(47, 67, 57, 0.12);
}
.news_featured .news_featured_img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.news_featured .news_featured_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.news_featured .news_featured_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 0;
}
.news_featured .news_featured_info .date {
    font-size: 15px;
    color: #777;
    margin-bottom: 20px;
    font-weight: 400;
}
.news_featured .news_featured_info .news_featured_title {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
}
.news_featured .news_featured_info .btn {
    gap: 8px;
    width: 160px;
    padding: 0;
    transition: background 0.3s ease-in-out;
    margin-top: 80px;
}
.news_featured .news_featured_info .btn:hover {
    background: #333;
    color: #fff;
}
.news_featured .news_featured_info .btn:hover img {
    content: url("../images/icon_arrow_right_white.svg");
}
.news_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 64px;
}
.news_list .news_item {
    padding-bottom: 16px;
}
.news_list .news_item a {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.news_list .news_item_img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 10px;
}
.news_list .news_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.news_list .news_item a:hover .news_item_img img {
    transform: scale(1.04);
}
.news_list .news_item_info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.news_list .news_item_title {
    font-size: 17px;
    line-height: 22px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news_list .news_item a:hover .news_item_title {
    color: #1a9058;
}
.news_list .news_item_date {
    font-size: 14px;
    color: #777;
    font-weight: 400;
}
.news_list .news_item_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news_list .news_item_bottom img {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.news_list .news_item a:hover .news_item_bottom img {
    opacity: 1;
}

/* PR센터 - 스토리 목록 */
.story_featured {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 40px;
    margin-bottom: 64px;
}
.story_featured_item {
    display: flex;
    flex-direction: column;
}
.story_featured_img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f4f4f4;
    border-radius: 10px;
}
.story_featured_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}
.story_featured_item:hover .story_featured_img img {
    transform: scale(1.04);
}
.story_featured_info {
    padding-top: 16px;
}
.story_featured_title {
    margin-top: 8px;
    font-size: 28px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.story_item_date {
    font-size: 15px;
    color: #777;
    margin-top: 20px;
}
.story_featured_main {
    position: relative;
    overflow: hidden;
}
.story_featured_main .story_featured_img {
    height: 100%;
    min-height: 440px;
    border-radius: 10px;
}
.story_featured_main .story_featured_img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.72) 100%);
    border-radius: 10px;
}
.story_featured_main .story_featured_info {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
    z-index: 1;
    padding-top: 0;
}
.story_featured_main .story_item_num {
    color: #ddd;
}
.story_featured_main .story_featured_title,
.story_featured_main .story_item_date {
    color: #fff;
}
.story_featured_main .story_featured_title {
    margin-top: 8px;
    font-size: 30px;
    line-height: 38px;
}
.story_list {
    border-top: 1px solid #555;
    margin-bottom: 42px;
}
.story_list .story_item {
    border-bottom: 1px solid #ccc;
}
.story_list .story_item a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
}
.story_list .story_item_img {
    width: 240px;
    aspect-ratio: 240 / 155;
    overflow: hidden;
    border-radius: 10px;
}
.story_list .story_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.story_list .story_item a:hover .story_item_img img {
    transform: scale(1.04);
}
.story_list .story_item_info {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 20px;
    row-gap: 90px;
    align-self: stretch;
    padding: 0 0 20px;
}
.story_item_num {
    font-size: 16px;
    font-weight: 700;
    color: #555;
}
.story_list .story_item_info .story_item_num {
    display: flex;
    align-items: center;
}
.story_list .story_item_title {
    font-size: 22px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.story_list .story_item_date {
    grid-column: 2 / 3;
    margin-top: 0;
}
.story_list .story_item a:hover .story_item_title {
    color: #1a9058;
}

/* PR센터 - 스토리 상세 */
.story_detail_header {
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
}
.story_detail_title {
    font-size: 32px;
    font-weight: 700;
}
.story_detail_date {
    margin-top: 32px;
    font-size: 15px;
    color: #777;
}
.story_detail_visual {
    width: fit-content;
    max-width: 100%;
    margin: 48px 0 32px;
}
.story_detail_visual img {
    display: block;
    max-width: 100%;
    max-height: 640px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.story_detail_content {
    font-size: 18px;
    line-height: 26px;
    color: #555;
}
.story_detail_files {
    margin-top: 64px;
    padding: 28px;
    background: #f4f4f4;
    border-radius: 10px;
}
.story_detail_files_title {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #1a9058;
}
.story_detail_file_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    max-width: 100%;
}
.story_detail_file_list li {
    max-width: 100%;
}
.story_detail_file_list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    min-width: 0;
    font-size: 16px;
    color: #333;
}
.story_detail_file_list .file_name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.story_detail_file_list a:hover {
    color: #1a9058;
}
.story_detail_file_list a:hover img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(68%) saturate(600%) hue-rotate(118deg) brightness(85%);
}
.story_detail_download_icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}
.story_detail_nav {
    margin-top: 64px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #555;
}
.story_detail_nav_item {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    gap: 24px;
    min-height: 64px;
    border-bottom: 1px solid #ddd;
    padding: 0 32px;
}
.story_detail_nav_item:last-child {
    border-bottom: 0;
}
.story_detail_nav_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.story_detail_nav_label img {
    display: block;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}
.story_detail_nav_item p {
    font-size: 16px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.story_detail_nav_item p.disabled {
    color: #999;
}
.story_detail_nav_item:hover p {
    color: #1a9058;
}
.story_detail_nav_item:hover p.disabled {
    color: #999;
}
.story_detail_btn_wrap {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}
.story_detail_btn_wrap .btn {
    width: 160px;
    height: 48px;
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PR센터 - 기업문화 */
.culture_wrap .top_content {
    padding-bottom: 64px;
    border-bottom: 1px solid #bbb;
    margin-bottom: 48px;
}
.culture_wrap .top_content .en {
    display: block;
    margin-bottom: 20px;
    color: #1a9058;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}
.culture_wrap .top_content .title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}
.culture_wrap .top_content .img_wrap {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    align-items: center;
    gap: 30px;
    max-width: 930px;
    margin: 64px auto 0;
}
.culture_wrap .top_content .img_wrap img {
    display: block;
    width: 100%;
}
.culture_wrap .top_content .text {
    color: #333;
    font-size: 18px;
    line-height: 26px;
    word-break: keep-all;
    max-width: 390px;
}
.culture_card_list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 70px;
}
.culture_icon {
    display: block;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}
.culture_num {
    margin-bottom: 8px;
    color: #555;
    font-size: 18px;
    font-weight: 700;
}
.culture_card_title {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
}
.culture_card_desc {
    color: #555;
    font-size: 17px;
    line-height: 24px;
    word-break: keep-all;
}

@keyframes cultureFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199px) {
    .achievement_list {
        gap: 20px;
    }
    .achievement_desc {
        font-size: 16px;
        line-height: 20px;
    }

    .news_featured {
        gap: 28px;
        padding: 20px 28px 20px 20px;
    }
    .news_featured .news_featured_img {
        flex: 0 0 460px;
    }
    .news_featured .news_featured_info .news_featured_title {
        font-size: 24px;
        line-height: 30px;
    }
    .news_featured .news_featured_info .news_featured_desc {
        font-size: 15px;
    }
    .news_list {
        gap: 48px 24px;
    }
    .news_list .news_item_title {
        font-size: 18px;
        line-height: 26px;
    }

    .story_featured {
        gap: 16px;
    }
    .story_featured_main .story_featured_img {
        min-height: 320px;
    }
    .story_featured_title,
    .story_list .story_item_title {
        font-size: 20px;
        line-height: 28px;
    }
    .story_featured_main .story_featured_title {
        font-size: 26px;
        line-height: 34px;
    }
    .story_list .story_item a {
        grid-template-columns: minmax(0, 1fr) 220px;
        gap: 32px;
    }
    .story_list .story_item_img {
        width: 220px;
    }

    .story_detail_title {
        font-size: 30px;
    }

    .culture_card_list {
        gap: 64px 40px;
    }
}

@media (max-width: 1023px) {
    .news_featured .news_featured_img {
        flex: 0 0 350px;
    }

    .story_featured_main .story_featured_img {
        min-height: 280px;
    }
    .story_list .story_item a {
        grid-template-columns: minmax(0, 1fr) 200px;
        min-height: 190px;
    }
    .story_list .story_item_img {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .section_achievement {
        margin-bottom: 40px;
    }
    .achievement_title {
        font-size: 22px;
    }
    .achievement_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .achievement_desc {
        font-size: 15px;
        line-height: 19px;
    }

    .list_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }
    .list_header .list_search {
        width: 100%;
    }
    .list_header .list_search_input {
        flex: 1;
        width: 100%;
    }

    .news_featured {
        flex-direction: column;
        padding: 28px;
        margin-bottom: 40px;
    }
    .news_featured .news_featured_img {
        flex: none;
        width: 100%;
    }
    .news_featured .news_featured_info {
        padding: 0;
    }
    .news_featured .news_featured_info .date {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .news_featured .news_featured_info .news_featured_title {
        font-size: 22px;
        line-height: 30px;
    }
    .news_featured .news_featured_info .btn {
        margin-top: 32px;
    }
    .news_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
        margin-bottom: 40px;
    }
    .news_list .news_item_title {
        font-size: 18px;
        line-height: 24px;
    }
    .news_list .news_item_info {
        gap: 8px;
    }

    .story_featured {
        grid-template-columns: 1fr;
        margin-bottom: 48px;
    }
    .story_featured_item {
        position: relative;
        overflow: hidden;
    }
    .story_featured_item .story_featured_img::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.72) 100%);
        border-radius: 10px;
    }
    .story_featured_item .story_featured_info {
        position: absolute;
        left: 24px;
        right: 24px;
        bottom: 22px;
        z-index: 1;
        padding-top: 0;
    }
    .story_featured_item .story_item_num,
    .story_featured_item .story_featured_title,
    .story_featured_item .story_item_date {
        color: #fff;
    }
    .story_featured_main .story_featured_img {
        min-height: auto;
        aspect-ratio: 16 / 9;
    }
    .story_featured_main .story_featured_title {
        font-size: 22px;
        line-height: 30px;
    }
    .story_list {
        border-top-color: #333;
    }
    .story_list .story_item a {
        grid-template-columns: minmax(0, 1fr) 180px;
        gap: 24px;
        min-height: 170px;
        padding: 28px 0;
    }
    .story_list .story_item_info {
        grid-template-columns: 52px minmax(0, 1fr);
        column-gap: 12px;
        row-gap: 48px;
        padding: 4px 0;
    }
    .story_list .story_item_title {
        font-size: 18px;
        line-height: 26px;
    }
    .story_list .story_item_img {
        width: 180px;
    }
    .story_item_num,
    .story_list .story_item_date {
        font-size: 14px;
    }

    .story_detail_title {
        font-size: 28px;
    }
    .story_detail_date {
        margin-top: 28px;
    }
    .story_detail_visual {
        margin: 40px 0 28px;
    }
    .story_detail_content {
        font-size: 16px;
        line-height: 25px;
    }
    .story_detail_files {
        margin-top: 48px;
        padding: 24px;
    }
    .story_detail_files_title,
    .story_detail_file_list a {
        font-size: 15px;
    }
    .story_detail_nav {
        margin-top: 56px;
    }
    .story_detail_nav_item {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 16px;
        min-height: 60px;
        padding: 0 20px;
    }
    .story_detail_nav_label,
    .story_detail_nav_item p {
        font-size: 15px;
    }
    .story_detail_btn_wrap {
        margin-top: 56px;
    }
    .story_detail_btn_wrap .btn {
        width: 150px;
        height: 46px;
        font-size: 15px;
    }

    .culture_wrap .top_content {
        padding-bottom: 48px;
        margin-bottom: 16px;
        border-bottom: none;
    }
    .culture_wrap .top_content .title {
        font-size: 26px;
        line-height: 36px;
    }
    .culture_wrap .top_content .img_wrap {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 30px;
        place-items: center;
    }
    .culture_wrap .top_content .img_wrap img {
        max-width: 360px;
    }
    .culture_wrap .top_content .text {
        text-align: center;
        font-size: 16px;
        line-height: 26px;
    }
    .culture_tab_container {
        padding-top: 36px;
    }
    .culture_tab_btn_wrap {
        justify-content: flex-start;
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 20px;
        margin-bottom: 36px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .culture_tab_btn_wrap::-webkit-scrollbar {
        display: none;
    }
    .culture_tab_btn {
        font-size: 16px;
    }
    .culture_card_list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 28px;
    }
    .culture_icon {
        width: 58px;
        height: 58px;
        margin-bottom: 20px;
    }
    .culture_card_title {
        margin-bottom: 14px;
    }
}

@media (max-width: 424px) {
    .achievement_list {
        grid-template-columns: repeat(1, 1fr);
    }
    .achievement_item {
        gap: 12px;
    }

    .list_header {
        margin-bottom: 24px;
    }

    .news_featured {
        padding: 16px;
        gap: 16px;
    }
    .news_featured .news_featured_info .date {
        font-size: 13px;
    }
    .news_featured .news_featured_info .news_featured_title {
        font-size: 20px;
        line-height: 26px;
    }
    .news_featured .news_featured_info .btn {
        width: 100%;
        margin-top: 20px;
    }
    .news_list {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .news_list .news_item_title {
        font-size: 17px;
    }

    .story_featured {
        gap: 28px;
        margin-bottom: 40px;
    }
    .story_featured_item .story_featured_info {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
    .story_featured_main .story_featured_title,
    .story_featured_title {
        font-size: 18px;
        line-height: 26px;
    }
    .story_list .story_item a {
        display: flex;
        flex-direction: column-reverse;
        gap: 14px;
        min-height: auto;
        padding: 22px 0;
    }
    .story_list .story_item_info {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0;
    }
    .story_list .story_item_img {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    .story_item_num,
    .story_list .story_item_date {
        font-size: 12px;
        line-height: 18px;
    }
    .story_list .story_item_title {
        font-size: 15px;
        line-height: 22px;
        -webkit-line-clamp: 2;
    }

    .story_detail_header {
        padding-bottom: 20px;
    }
    .story_detail_title {
        font-size: 22px;
    }
    .story_detail_date {
        margin-top: 18px;
        font-size: 13px;
    }
    .story_detail_visual {
        width: 100%;
        margin: 28px 0 20px;
    }
    .story_detail_visual img {
        max-height: 420px;
        margin: 0 auto;
    }
    .story_detail_content {
        font-size: 15px;
        line-height: 24px;
    }
    .story_detail_files {
        margin-top: 36px;
        padding: 18px;
    }
    .story_detail_files_title {
        margin-bottom: 16px;
        font-size: 14px;
    }
    .story_detail_file_list {
        gap: 10px;
    }
    .story_detail_file_list a {
        font-size: 14px;
        line-height: 20px;
    }
    .story_detail_nav {
        margin-top: 40px;
    }
    .story_detail_nav_item {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 12px;
        min-height: 56px;
        padding: 0 12px;
    }
    .story_detail_nav_label {
        gap: 8px;
        font-size: 14px;
    }
    .story_detail_nav_item p {
        font-size: 14px;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .story_detail_btn_wrap {
        margin-top: 40px;
    }
    .story_detail_btn_wrap .btn {
        width: 140px;
        height: 44px;
        font-size: 14px;
    }

    .culture_wrap .top_content {
        padding-bottom: 40px;
    }
    .culture_wrap .top_content .title {
        font-size: 22px;
        line-height: 32px;
    }
    .culture_tab_btn_wrap {
        gap: 0;
    }
    .culture_tab_btn {
        font-size: 15px;
    }
    .culture_card_list {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .culture_card_desc {
        font-size: 15px;
        line-height: 22px;
    }
}

/* PR센터 공통 - 페이지네이션 */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.pagination .page_btn {
    width: 40px;
    height: 40px;
    display: flex;
    background: transparent;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}
.pagination .page_btn img {
    width: 24px;
    height: 24px;
}
.pagination .page_btn:disabled {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
}
.pagination .page_list {
    display: flex;
    align-items: center;
    margin: 0 8px;
}
.pagination .page_num {
    width: 40px;
    height: 40px;
    font-size: 16px;
    background: transparent;
    border-radius: 2px;
    color: #777;
    transition: background 0.2s;
}
.pagination .page_num.active {
    background: #333;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .pagination {
        gap: 8px;
    }
    .pagination .page_num,
    .pagination .page_btn {
        width: 36px;
        height: 36px;
    }
    .pagination .page_num {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 4px;
    }
    .pagination .page_num,
    .pagination .page_btn {
        width: 32px;
        height: 32px;
    }
    .pagination .page_btn img {
        width: 20px;
        height: 20px;
    }
    .pagination .page_list {
        margin: 0 4px;
    }
}

/* 사업실적 상세 모달 */
.performance_title_wrap {
    padding: 8px 0 24px;
    border-bottom: 1px solid #000;
}
.performance_title_wrap h3 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
    padding-bottom: 12px;
}
.performance_title_wrap .date {
    font-size: 16px;
    color: #777;
}
.performance_detail_overview_wrap {
    padding: 32px 0 48px;
}
.performance_detail_overview_wrap .sub_title_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 24px;
}
.performance_detail_overview_wrap .sub_title_wrap h4 {
    font-size: 20px;
    font-weight: 700;
}
.performance_detail_overview_wrap .overview_contents {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.performance_detail_overview_wrap .overview_contents .overview_content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.performance_detail_overview_wrap .overview_contents .overview_content .overview_title_wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}
.performance_detail_overview_wrap .overview_contents .overview_content .overview_title_wrap .overview_title {
    font-size: 18px;
    font-weight: 600;
}
.performance_detail_overview_wrap .overview_contents .overview_content .desc {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.performance_detail_overview_wrap .overview_contents .overview_content .desc p {
    font-size: 17px;
    line-height: 24px;
    color: #333;
}
.performance_detail_build_wrap {
    padding-bottom: 48px;
}
.performance_detail_build_wrap .sub_title_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
}
.performance_detail_build_wrap .sub_title_wrap h4 {
    font-size: 20px;
    font-weight: 700;
}
.performance_detail_build_wrap .build_contents {
    display: flex;
    flex-direction: column;
    gap: 26px;
    background: #f2f6f4;
    border-radius: 10px;
    padding: 32px 28px;
}
.performance_detail_build_wrap .build_contents .build_content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.performance_detail_build_wrap .build_contents .build_content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1a9058;
}
.performance_detail_build_wrap .build_contents .build_content ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.performance_detail_build_wrap .build_contents .build_content ul li {
    display: flex;
    align-items: flex-start;
    font-size: 17px;
    line-height: 24px;
    color: #333;
}
.performance_detail_build_wrap .build_contents .build_content ul li::before {
    content: "・";
    font-size: 28px;
    color: #1a9058;
}
.performance_detail_result_wrap .sub_title_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
}
.performance_detail_result_wrap .sub_title_wrap h4 {
    font-size: 20px;
    font-weight: 700;
}
.performance_detail_result_wrap .result_contents {
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
}
.performance_detail_result_wrap .result_contents .result_item {
    display: flex;
    padding: 20px 0;
}
.performance_detail_result_wrap .result_contents .result_item + .result_item {
    border-top: 1px solid #ccc;
}
.performance_detail_result_wrap .result_contents .result_item .num {
    width: 40px;
    font-size: 17px;
    line-height: 24px;
    font-weight: 700;
    color: #1a9058;
}
.performance_detail_result_wrap .result_contents .result_item .content_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.performance_detail_result_wrap .result_contents .result_item .content_wrap p {
    font-size: 17px;
    line-height: 24px;
}
.performance_detail_result_wrap .result_contents .result_item .content_wrap .content_title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}
.performance_detail_result_wrap .result_contents .result_item .content_wrap .content_item_wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.performance_detail_result_wrap .result_contents .result_item .content_wrap .desc {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #444;
}

@media (max-width: 768px) {
    .performance_title_wrap {
        padding: 8px 0 16px;
    }
    .performance_title_wrap h3 {
        font-size: 20px;
        line-height: 28px;
        padding-bottom: 8px;
    }
    .performance_title_wrap .date {
        font-size: 14px;
    }
    .performance_detail_overview_wrap {
        padding: 24px 0 40px;
    }
    .performance_detail_overview_wrap .sub_title_wrap {
        padding-bottom: 16px;
    }
    .performance_detail_overview_wrap .sub_title_wrap h4 {
        font-size: 17px;
    }
    .performance_detail_overview_wrap .sub_title_wrap img {
        width: 18px;
        height: 18px;
    }
    .performance_detail_overview_wrap .overview_contents {
        gap: 16px;
    }
    .performance_detail_overview_wrap .overview_contents .overview_content {
        gap: 8px;
    }
    .performance_detail_overview_wrap .overview_contents .overview_content .overview_title_wrap {
        gap: 4px;
    }
    .performance_detail_overview_wrap .overview_contents .overview_content .overview_title_wrap .overview_title {
        font-size: 16px;
    }
    .performance_detail_overview_wrap .overview_contents .overview_content .desc {
        gap: 4px;
    }
    .performance_detail_overview_wrap .overview_contents .overview_content .desc p {
        font-size: 15px;
        line-height: 20px;
        color: #333;
    }
    .performance_detail_build_wrap {
        padding-bottom: 40px;
    }
    .performance_detail_build_wrap .sub_title_wrap {
        gap: 8px;
        padding-bottom: 12px;
    }
    .performance_detail_build_wrap .sub_title_wrap img {
        width: 18px;
        height: 18px;
    }
    .performance_detail_build_wrap .sub_title_wrap h4 {
        font-size: 17px;
    }
    .performance_detail_build_wrap .build_contents {
        gap: 16px;
        background: #f2f6f4;
        border-radius: 10px;
        padding: 20px 16px;
    }
    .performance_detail_build_wrap .build_contents .build_content {
        gap: 12px;
    }
    .performance_detail_build_wrap .build_contents .build_content h5 {
        font-size: 16px;
    }
    .performance_detail_build_wrap .build_contents .build_content ul {
        gap: 8px;
    }
    .performance_detail_build_wrap .build_contents .build_content ul li {
        font-size: 15px;
        line-height: 20px;
        align-items: flex-start;
    }
    .performance_detail_build_wrap .build_contents .build_content ul li::before {
        font-size: 20px;
    }
    .performance_detail_result_wrap .sub_title_wrap {
        gap: 8px;
        padding-bottom: 12px;
    }
    .performance_detail_result_wrap .sub_title_wrap h4 {
        font-size: 17px;
    }
    .performance_detail_result_wrap .result_contents .result_item {
        padding: 16px 0;
    }
    .performance_detail_result_wrap .result_contents .result_item .num {
        width: 24px;
        flex: 0 0 24px;
        font-size: 14px;
        line-height: 20px;
    }
    .performance_detail_result_wrap .result_contents .result_item .content_wrap {
        gap: 10px;
    }
    .performance_detail_result_wrap .result_contents .result_item .content_wrap .content_title {
        font-size: 16px;
    }
    .performance_detail_result_wrap .result_contents .result_item .content_wrap p {
        font-size: 15px;
        line-height: 20px;
    }
    .performance_detail_result_wrap .result_contents .result_item .content_wrap .desc {
        font-size: 14px;
        line-height: 18px;
    }
}
