/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    margin: 0;
    padding: 0;
    background: white;
    overflow-x: hidden;
}

/* Hero Content */
.hero-section .inner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 38px;
    color: white;
    margin-bottom: 49px;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 80px;
    color: white;
    line-height: 1.2;
    margin-bottom: 232px;
}

.view-more-btn {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
    display: inline-block;
    padding-bottom: 15px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-decoration: none;
}

.view-more-btn:visited,
.view-more-btn:active,
.view-more-btn:focus {
    text-decoration: none;
    /* color: inherit; */
}

.view-more-btn:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.view-more-btn.dark {
    color: black;
}

.view-more-btn.dark:hover {
    opacity: 0.7;
}


.underline-teal {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #2b8d8f;
    transition: width 0.4s ease;
    z-index: 1;
}

.view-more-btn:hover .underline-teal {
    width: 100%;
}

.underline-orange {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ff4800;
    transition: width 1s ease;
    z-index: 2;
}

.view-more-btn:hover .underline-orange {
    width: 100%;
}

.underline-white {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 116px;
    height: 2px;
    background: white;
}

/* Social Icons - Floating Banner */
.social-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: #2b8d8f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-icon img {
    max-width: 30px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.social-icon:hover {
    background: #1f6a6c;
    transform: scale(1.1);
}

/* About Section */
.about-section {
    position: relative;
    width: 100%;
    height:90vh;
    padding: 180px 0;
    background: white;
}

.about-section::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 474px;
    background-image: url('/image/section_01_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

/* .about-section .section-title,
.about-section .view-more-btn,
.about-section .section-description {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
} */


.section-title {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 800;
    font-size: 50px;
    line-height: 62px;
    color: black;
    margin-bottom: 36px;
}

.section-description {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: -0.24px;
    color: #797979;
    max-width: 929px;
}

.section-description.single-line {
    margin-top: 0;
    margin-bottom: 50px;
}

.news-section .section-title {
    margin-bottom: 0;
}


/* Stats */
.stats {
    display: flex;
    gap: 90px;
    margin-top: 64px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-circle {
    width: 180px;
    height: 180px;
    border: 2px solid #2b8d8f;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: #2b8d8f;
    text-align: center;
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #9cb0b1;
    text-align: center;
    line-height: 1;
}

/* Services Section */
.services-section {
    position: relative;
    width: 100%;
    height:auto;
    padding: 0;
    padding-bottom:150px;
    background: white;
    overflow: hidden;
}

.services-section::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(90deg, #2B8D8F 0%, #0C2829 100%);
    z-index: 0;
}

.services-section .inner {
    padding-top: 160px;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.services-section .section-title {
    margin-top: 0;
}

.services-grid {
    margin-top:50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 54px;
    position: relative;
    margin-bottom:50px;
}


/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    max-width:100% !important;
    height: 100vh;
    background-image: url('/image/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2B8D8F;
    opacity: 0.5;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000A6;
    z-index: 2;
}

section {
    width:100%;
    height:auto;
    margin:0 auto;
}

section > .inner {
    width: 100%;
    max-width:1440px;
    padding:0 20px;
    margin:0 auto;
    position: relative;
    height: 100%;
}


/* Navigation */
header {
    position: relative;
    z-index: 1000;
}

.nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 129px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

/* PC 버전: 헤더 상단 고정 */
@media (min-width: 769px) {
    .nav {
        position: fixed;
        /* background: rgba(0, 0, 0, 0.3); */
        transition: background 0.3s ease;
    }
    
    /* 스크롤 시 배경색 진하게 */
    body.scrolled .nav {
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
    }
}

.nav > div {
    max-width: 1920px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

.logo {
    width: 144px;
    height: 69px;
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 120px;
    align-items: center;
    margin: 0;
    padding: 0;
}

@media (max-width: 1600px) {
    .nav-menu {
        gap: 60px;
    }
}

@media (max-width: 1200px) {
    .nav-menu {
        gap: 30px;
    }
    .nav-menu li a {
        font-size: 16px;
    }
}

.nav-menu li a {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-menu li:not(.contact-btn) a:hover {
    color: #2b8d8f;
    opacity: 0.8;
}

.contact-btn {
    background: #2b8d8f;
    border-radius: 23px;
    padding: 10px 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
    background: #1f6a6c;
    transform: translateY(-2px);
}

.contact-btn a {
    display: inline-block;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1003;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #ff4800;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    position: absolute;
    left: 0;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 6px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 6px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* Mobile Menu Curtain */
.mobile-menu-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: none;
}

.mobile-menu-curtain.active {
    transform: translateX(0);
}

.mobile-menu-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 90px 20px 20px;
    gap: 60px;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    width: 100%;
    text-align: center;
}

.mobile-nav-menu li a {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
    text-decoration: none;
    display: block;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.mobile-nav-menu li:not(.mobile-contact-btn) a:hover {
    color: #2b8d8f;
}

.mobile-contact-btn {
    background: #2b8d8f;
    border-radius: 23px;
    padding: 10px 20px;
    margin-top: 20px;
}

.mobile-contact-btn a {
    display: inline-block;
}

/* Mobile Social Icons */
.mobile-social-icons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.mobile-social-icon {
    width: 50px;
    height: 50px;
    background: #2b8d8f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.mobile-social-icon img {
    max-width: 25px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.mobile-social-icon:hover {
    background: #1f6a6c;
    transform: scale(1.1);
}

/* Mobile Social Icons Fixed Bottom */
.mobile-social-icons-fixed {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    z-index: 9998;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.mobile-social-icons-fixed.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mobile-social-icon-fixed {
    width: 48px;
    height: 48px;
    background: #2b8d8f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-social-icon-fixed img {
    max-width: 24px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.mobile-social-icon-fixed:active {
    background: #1f6a6c;
    transform: scale(0.95);
}

.service-card {
    position: relative;
    width: 100%;
    height: auto;
    background: transparent;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 300px;
    height: 300px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-sizing: border-box;
    margin: 0 auto;
    box-shadow: 2px 11px 5px 0px rgba(0, 0, 0, 0.25);
}

.service-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.service-card:hover .service-image {
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.35);
}

.service-title {
    padding: 20px 20px 20px 0;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
    background: transparent;
}


/* News Section */
.news-section {
    position: relative;
    width: 100%;
    padding: 172px 0 290px;
    background: #fafafa;
}

/* .news-section .section-title,
.news-section .view-more-btn,
.news-section .section-description {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
} */

.news-grid {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

/* .news-section .view-more-btn {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 60px;
    box-sizing: border-box;
    width: 100%;
} */

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.news-card {
    background: white;
    border: 1px solid #2b8d8f;
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 15px 25px 0px rgba(0, 0, 0, 0.3);
}

.news-card.featured {
    background: #2b8d8f;
    box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.25);
    margin-top: -16px;
}

.news-card.featured:hover {
    box-shadow: 15px 20px 30px 0px rgba(0, 0, 0, 0.35);
}

.news-image {
    width: 100%;
    height: 192px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #d9d9d9;
}

.news-card.featured .news-image {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 기본 썸네일 이미지일 경우 가운데 정렬, 원본 사이즈 */
.news-image img[src="/image/bd_thumb.png"],
.news-image img[src*="bd_thumb.png"] {
    width: auto;
    height: auto;
    max-width: 180px;
    max-height: 100%;
    object-fit: contain;
    margin: 0 auto;
}

.news-logo {
    width: 177px;
    height: 87px;
}

.news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-title {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: black;
    height: 48px;
    margin-bottom: 36px;
}

.news-card.featured .news-title {
    color: white;
}

.news-date {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #919191;
}

.news-card.featured .news-date {
    color: #6ac0c2;
}


/* Footer */
.footer {
    width: 100%;
    margin: 0 auto;
    background: white;
    border-top: 1px solid #e2e2e2;
    padding: 48px 20px;
}

.footer-content {
    max-width: 1920px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
}

.footer-right img {
    max-width: 100%;
    height: auto;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: black;
}

.footer-info {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    color: black;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    color: #a5a5a5;
    margin-top: 30px;
}

.footer-right {
    width: 160px;
    height: 78px;
}

.footer-right svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1920px) {
    .news-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .services-section {
        height:auto;
        padding-bottom:150px;
    }
}

@media (max-width: 1680px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-section {
        height:auto;
        padding-bottom:150px;
    }
    .service-title {
        text-align: center;
    }
    .service-image {
        margin: 0;
    }
    .services-grid {
        width:50%;
    }
    .service-card {
        width:320px;
        align-items: flex-start;
    }
}


@media (max-width: 1500px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-section {
        height:auto;
        padding-bottom:150px;
    }
    .services-section::after {
        height: 60%;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-grid {
        width:100%;
    }
    .service-card {
        width:100%;
    }
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-curtain {
        display: block;
    }

    .nav {
        position: fixed;
        height: 80px;
        transition: background 0.3s ease;
    }
    
    /* 모바일 스크롤 시 배경색 진하게 */
    body.scrolled .nav {
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
    }

    .logo {
        width: 120px;
        height: 58px;
    }

    /* Hide floating social icons on mobile */
    .social-icons {
        display: none !important;
        visibility: hidden;
        opacity: 0;
    }

    /* Show mobile fixed social icons */
    .mobile-social-icons-fixed {
        display: flex !important;
    }

    /* Hero Section Mobile */
    .hero-section {
        height: 100vh;
        min-height: 600px;
    }

    .hero-section .inner {
        height: 100vh;
        min-height: 600px;
        padding: 100px 20px 20px;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 40px;
    }

    .view-more-btn {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .underline-teal,
    .underline-orange {
        width: 100%;
    }

    /* About Section Mobile */
    .about-section {
        height: auto;
        padding: 60px 0;
        min-height: auto;
    }

    .about-section .inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 20px;
        text-align: center;
    }

    .section-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
        text-align: center;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 40px;
        margin-bottom: 30px;
        width: 100%;
        max-width: 100%;
        justify-items: center;
        box-sizing: border-box;
        padding: 0;
    }

    .stats .stat-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .stats .stat-item:nth-child(4) {
        grid-column: 1;
    }

    .stats .stat-item:nth-child(5) {
        grid-column: 2;
    }

    .about-section .view-more-btn {
        align-self: center;
    }

    .stat-circle {
        width: 100%;
        max-width: 100px;
        height: 100px;
        box-sizing: border-box;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Services Section Mobile */
    .services-section {
        height: auto;
        padding: 60px 0;
        min-height: auto;
    }

    .services-section::after {
        top: 0;
        bottom: 0;
        height: 100%;
    }

    .services-section .inner {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .services-section .section-title,
    .services-section .section-description,
    .services-section .service-title,
    .services-section .view-more-btn {
        color: #fff;
    }

    .services-section .view-more-btn {
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    .services-grid {
        /* grid-template-columns: 1fr; */
        gap: 30px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .service-image {
        width: 100%;
        max-width: 250px;
        height: 250px;
    }

    .service-title {
        font-size: 18px;
        padding: 15px 0;
        text-align: center;
    }

    /* News Section Mobile */
    .news-section {
        padding: 60px 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .news-card {
        height: auto;
        min-height: 300px;
    }

    .news-image {
        height: 150px;
    }

    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 기본 썸네일 이미지일 경우 가운데 정렬, 원본 사이즈 */
    .news-image img[src="/image/bd_thumb.png"],
    .news-image img[src*="bd_thumb.png"] {
        width: auto;
        height: auto;
        max-width: 120px;
        max-height: 100%;
        object-fit: contain;
        margin: 0 auto;
    }

    .news-content {
        padding: 20px;
    }

    .news-title {
        font-size: 18px;
        line-height: 1.4;
        height: auto;
        margin-bottom: 15px;
    }

    .news-date {
        font-size: 14px;
    }

    .news-section .view-more-btn {
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    /* Footer Mobile */
    .footer {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-left {
        align-items: center;
        text-align: center;
    }

    .footer-right {
        width: 120px;
        height: auto;
        margin: 0 auto;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-info {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-copyright {
        font-size: 13px;
        margin-top: 20px;
    }
}
@media (max-width: 1500px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        /* grid-template-columns: 1fr; */
    }
    .view-more-btn {
        width:95px;
    }
}