@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Oswald:wght@200..700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

html,
body {
    font-family: "Roboto", "Noto Sans KR", sans-serif;
    background: #fff;
    color: #111111;
    font-size: 1rem;
}

a {
    font-family: "Roboto", "Noto Sans KR", sans-serif;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

p {
    font-family: "Roboto", "Noto Sans KR", sans-serif;
    padding: 0;
    margin: 0;
    color: #111111;
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", "Noto Sans KR", sans-serif;
}

.btn {
    border-radius: 999px;
}

.bradius25 {
    border-radius: 6px;
    color: #ddd;
}

/* header 영역 전체 ########################################## */
.header {
    padding: 25px 0;
    background-color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease-in-out;
}

.header a {
    margin: 0;
    padding: 0;
    outline: 0;
    color: #000;
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header a:hover {
    color: #d9534f;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header .site-logo {
    color: #000;
}

.header .site-logo span {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 28px;
    margin-right: 8px;
    color: #000;
}

.header .tel i {
    font-size: 1.2rem;
    color: #000000;
}

.header .tel:hover i {
    color: #d9534f;
}

.header .icon-hamburger {
    color: #000000;
}

.header .icon-hamburger:hover {
    color: #d9534f;
}

.header .tel i,
.header .tel:hover i,
.header .icon-hamburger,
.header .icon-hamburger:hover {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (min-width: 1024px) {
    .header .site-logo,
    .header .side-menu {
        min-width: 200px;
    }
}

.header .dt-menu a,
.header .side-menu a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .dt-menu a {
    font-family: "Roboto", "Noto Sans KR", sans-serif;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 767.98px) {
    .header {
        padding: 10px 0;
    }

    .header .site-logo span {
        font-family: "Oswald", sans-serif;
        font-weight: 500;
        font-size: 22px;
        margin-right: 8px;
        color: #000;
    }

    .dt-menu {
        display: none !important;
    }

    .header .side-menu {
        padding-right: 0;
    }
}

body.is-shrink .header,
body.is-shrink .header .site-logo span,
body.is-shrink .header .dt-menu a {
    transition: all 0.3s ease-in-out;
}

body.is-shrink .header {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
}

body.is-shrink .header .site-logo span {
    font-size: 24px;
}

body.is-shrink .header .dt-menu a {
    font-size: 16px;
}

/* header 영역 전체 ########################################## */

/* fullLayer menu 영역 전체 ################################### */
.full-layer {
    position: fixed;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0; */
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 1050;
    /* 필요시 값 조절 (navbar, header보다 위로) */
    transition: opacity 0.3s ease;
}

.full-layer.is-open {
    opacity: 1;
    pointer-events: auto;
}

.full-layer__inner {
    position: relative;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    color: #111;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: auto;
    padding: 2rem;
    /* 등장 애니메이션용 */
    transform: translateY(20px) scale(0.96);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    backdrop-filter: blur(15px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-layer.is-open .full-layer__inner {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.full-layer__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    border: none;
    background: rgba(0, 0, 0, 0);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.full-layer__close:hover {
    background: rgba(0, 0, 0, 0);
    transform: scale(1.2);
}

.full-layer-logo {
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.25);
}

.full-layer-copyright {
    position: absolute;
    bottom: 0.75rem;
    right: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
}

.full-layer__content {
    min-width: 840px;
}

.full-layer__content h2 {
    margin-bottom: 0.75rem;
}

.full-layer__content p {
    margin-bottom: 0;
}

.fullLayer-menu a,
.fullLayer-info p {
    line-height: 180%;
    color: rgba(255, 255, 255, 0.65);
}

.fullLayer-menu a:hover {
    color: rgba(255, 255, 255, 1);
}

.fullLayer-menu a {
    font-size: 3rem;
    font-weight: 900;
}

.fullLayer-info p {
    font-size: 1rem;
    font-weight: 300;
}

@media (max-width: 767.98px) {
    .full-layer__inner {
        width: 100%;
        padding: 1.5rem 1.25rem;
        border-radius: 0;
    }

    .full-layer__content {
        min-width: auto;
    }

    .fullLayer-menu {
        padding-bottom: 2rem;
    }

    .fullLayer-menu a {
        font-size: 2rem;
        font-weight: 900;
    }

    .fullLayer-info p {
        font-size: 0.85rem;
        font-weight: 300;
    }
}

/* fullLayer menu 영역 전체 ################################# */

/* Hero 영역 전체 ########################################## */
.hero-founders-full {
    --hero-slide-height: 560px;
    /* 원하는 높이로 조절: 360px, 480px 등 */
    background: #ffffff;
    padding: 4rem 0 3rem;
    overflow: hidden;
}

.hero-founders-full-gr {
    background: rgba(255, 255, 255, 0);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.05) 100%);
}

@media (max-width: 767.98px) {
    .hero-founders-full {
        --hero-slide-height: 360px;
        /* 원하는 높이로 조절: 360px, 480px 등 */
        padding: 5rem 0 0;
    }
}

.hero-head-inner {
    max-width: 960px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.hero-founders-title {
    font-family: "Roboto", "Noto Sans KR", sans-serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
}

.hero-founders-subtitle {
    font-family: "Roboto", "Noto Sans KR", sans-serif;
    max-width: 720px;
    margin: 1rem auto 2rem;
    font-size: 1.1rem;
    color: #000000;
}

.hero-founders-subtitle b {
    color: #ef4444;
}

.hero-founders-btn-group .btn {
    border-radius: 999px;
    padding-inline: 1.8rem;
}

.hero-slider-wrap-full {
    width: 100%;
    margin-top: 1.5rem;
}

.hero-carousel .owl-stage-outer {
    padding: 2rem 0 5rem;
    overflow: visible;
}

.hero-slide-card {
    position: relative;
    height: var(--hero-slide-height);
    border-radius: 6px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}

.hero-slide-card::before {
    content: "";
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
    z-index: 1;
}

.hero-slide-top-text {
    position: absolute;
    top: 8%;
    left: 0;
    right: 0;
    text-align: center;
    padding: 25px 0 15px;
    color: #fff;
}

.hero-slide-top-heading {
    display: block;
    font-size: 2rem;
    font-weight: 600;
}

.hero-slide-top-tag {
    display: inline-block;
    font-size: 0.78rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
    margin-top: 10px;
}

.hero-carousel .owl-nav {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    display: flex;
    gap: 0.25rem;
}

.hero-carousel .owl-nav button.owl-prev,
.hero-carousel .owl-nav button.owl-next {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: none;
    background: #111 !important;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-carousel .owl-nav button.owl-prev:hover,
.hero-carousel .owl-nav button.owl-next:hover {
    transform: translateY(-2px);
    background: #000 !important;
}

.hero-carousel .owl-nav i {
    font-size: 1rem;
}

.hero-carousel .owl-dots {
    display: none;
}

@media (max-width: 991.98px) {
    .hero-slide-card {
        height: calc(var(--hero-slide-height) * 0.9);
    }

    .hero-slide-top-text {
        left: 20px;
        right: 20px;
    }

    .hero-slide-bottom {
        width: 88%;
    }
}

@media (max-width: 575.98px) {
    .hero-founders-full {
        padding-top: 3rem;
    }

    .hero-slide-card {
        height: calc(var(--hero-slide-height) * 0.8);
    }

    .hero-carousel .owl-stage-outer {
        padding-bottom: 5rem;
    }
}

/* Hero 영역 전체 ########################################## */

/* section-content 영역 전체 ############################### */
.section-content {
    padding: 80px 0;
}

@media (max-width: 767.98px) {
    .section-content {
        padding: 45px 0;
    }
}

.section-content-inner {
    border-radius: 24px;
    padding: 3.8rem 1.5rem;
}

.bg-white-005 {
    background-color: rgba(255, 255, 255, 0.05);
}

.bg-black-050 {
    background-color: rgba(0, 0, 0, 0.3);
}

.text-muted {
    font-size: 1.1rem;
    color: #000000 !important;
}

.section-grid-card {
    position: relative;
    height: 420px;
    border-radius: 6px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    color: #ffffff;
    padding: 25px;
}

.section-grid-card-heading {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.section-grid-card-tag {
    display: inline-block;
    font-size: 0.78rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
    margin-top: 10px;
}

.js-growth-block {
    padding: 80px 0;
}

@media (max-width: 767.98px) {
    .js-growth-block {
        padding: 40px 0;
    }
}

.growth-section {
    --growth-card-height: 320px;
    background: #fff;
}

.growth-slider-outer {
    width: 100%;
    overflow: hidden;
}

.growth-slider-inner {
    width: 100vw;
}

@media (max-width: 575.98px) {
    .growth-slider-inner {
        padding-left: 1rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .growth-slider-inner {
        padding-left: calc((100vw - 540px) / 2 + 6px);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .growth-slider-inner {
        padding-left: calc((100vw - 720px) / 2 + 6px);
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .growth-slider-inner {
        padding-left: calc((100vw - 960px) / 2 + 6px);
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .growth-slider-inner {
        padding-left: calc((100vw - 1140px) / 2 + 6px);
    }
}

@media (min-width: 1400px) {
    .growth-slider-inner {
        padding-left: calc((100vw - 1320px) / 2 + 6px);
    }
}

.growth-carousel .owl-stage-outer {
    padding-block: 1.5rem;
    overflow: visible;
}

.growth-carousel .item {
    width: 416px;
    padding-inline: 0;
}

@media (max-width: 991.98px) {
    .growth-carousel .item {
        width: 360px;
    }
}

@media (max-width: 575.98px) {
    .growth-carousel .item {
        width: min(320px, 90vw);
        padding-inline: 0;
    }
}

.growth-card {
    position: relative;
    height: var(--growth-card-height);
    border-radius: 6px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.growth-card-title {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 24px;
    right: 24px;
    font-size: 1.05rem;
    font-weight: 600;
}

.growth-card-media {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    width: 86%;
}

.growth-card-media img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.growth-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.65));
    mix-blend-mode: multiply;
    z-index: 1;
}

.growth-nav {
    display: flex;
    gap: 0.25rem;
    padding-top: 10px;
}

.growth-nav button.growth-prev,
.growth-nav button.growth-next {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: none;
    background: #111 !important;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.growth-nav button.growth-prev:hover,
.growth-nav button.growth-next:hover {
    transform: translateY(-2px);
    background: #000 !important;
}

.growth-nav .owl-nav i {
    font-size: 1rem;
}

.growth-nav .owl-dots {
    display: none;
}

@media (max-width: 991.98px) {
    .growth-section {
        --growth-card-height: 280px;
    }
}

@media (max-width: 575.98px) {
    .growth-section {
        --growth-card-height: 260px;
    }
}

/* pill */
.dw-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    font-size: 0.92rem;
    color: #111827;
}

.dw-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 99px;
    background: #ef4444;
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.1);
}

/* section-content 영역 전체 ########################################## */

/* section-grid 영역 전체 ########################################## */
.portfolio-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 360px;
    border-radius: 6px;
    overflow: hidden;
}

.portfolio-grid img {
    max-width: 220px;
    max-height: 70px;
}

.grad-01 {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)), radial-gradient(circle at 18% 22%, rgba(120, 180, 255, 0.22) 0%, rgba(120, 180, 255, 0) 58%),
        radial-gradient(circle at 78% 82%, rgba(150, 120, 255, 0.16) 0%, rgba(150, 120, 255, 0) 62%), linear-gradient(135deg, #0b3bb0 0%, #1a2c9a 48%, #2b136a 100%);
}

.grad-02 {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)), radial-gradient(circle at 20% 18%, rgba(255, 120, 195, 0.18) 0%, rgba(255, 120, 195, 0) 58%),
        radial-gradient(circle at 82% 76%, rgba(180, 130, 255, 0.14) 0%, rgba(180, 130, 255, 0) 64%), linear-gradient(135deg, #7d0f3b 0%, #7a126a 52%, #2b136a 100%);
}

.grad-03 {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)), radial-gradient(circle at 26% 16%, rgba(170, 140, 255, 0.18) 0%, rgba(170, 140, 255, 0) 58%),
        radial-gradient(circle at 76% 84%, rgba(255, 140, 175, 0.14) 0%, rgba(255, 140, 175, 0) 64%), linear-gradient(135deg, #2a1370 0%, #6a1456 55%, #7a2d2a 100%);
}

.grad-04 {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)), radial-gradient(circle at 24% 20%, rgba(150, 120, 255, 0.14) 0%, rgba(150, 120, 255, 0) 58%),
        radial-gradient(circle at 82% 86%, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 60%), linear-gradient(135deg, #2b136a 0%, #171454 55%, #080611 100%);
}

.grad-05 {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)), radial-gradient(circle at 18% 24%, rgba(95, 220, 205, 0.18) 0%, rgba(95, 220, 205, 0) 58%),
        radial-gradient(circle at 84% 78%, rgba(120, 180, 255, 0.14) 0%, rgba(120, 180, 255, 0) 64%), linear-gradient(135deg, #0a5c6d 0%, #1532a6 50%, #2a1370 100%);
}

.grad-06 {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)), radial-gradient(circle at 18% 20%, rgba(255, 180, 110, 0.14) 0%, rgba(255, 180, 110, 0) 58%),
        radial-gradient(circle at 82% 80%, rgba(255, 120, 195, 0.14) 0%, rgba(255, 120, 195, 0) 64%), linear-gradient(135deg, #7a3b06 0%, #7d0f3b 52%, #2b136a 100%);
}

.grad-07 {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)), radial-gradient(circle at 18% 22%, rgba(200, 255, 140, 0.12) 0%, rgba(200, 255, 140, 0) 60%),
        radial-gradient(circle at 80% 82%, rgba(95, 220, 205, 0.14) 0%, rgba(95, 220, 205, 0) 64%), linear-gradient(135deg, #2b5a10 0%, #0a5c6d 46%, #1532a6 100%);
}

.grad-08 {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.57), rgba(0, 0, 0, 0.57)), radial-gradient(circle at 22% 18%, rgba(255, 225, 140, 0.12) 0%, rgba(255, 225, 140, 0) 60%),
        radial-gradient(circle at 78% 86%, rgba(255, 180, 110, 0.12) 0%, rgba(255, 180, 110, 0) 64%), linear-gradient(135deg, #6a4a06 0%, #7a3b06 48%, #6a1456 100%);
}

.grad-09 {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)), radial-gradient(circle at 16% 28%, rgba(120, 180, 255, 0.14) 0%, rgba(120, 180, 255, 0) 60%),
        radial-gradient(circle at 84% 22%, rgba(200, 140, 255, 0.12) 0%, rgba(200, 140, 255, 0) 60%), radial-gradient(circle at 68% 86%, rgba(255, 140, 175, 0.1) 0%, rgba(255, 140, 175, 0) 62%),
        linear-gradient(135deg, #070812 0%, #121050 45%, #080611 100%);
}

/* section-grid 영역 전체 ########################################## */

/* portfolioLightbox 영역 전체 ######################################## */
.portfolio-masonry {
    column-count: 1;
    column-gap: 1.5rem;
}

.portfolio-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-item img {
    display: block;
    width: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(20, 95, 255, 0.12);
}

@media (min-width: 576px) {
    .portfolio-masonry {
        column-count: 2;
    }
}

@media (min-width: 992px) {
    .portfolio-masonry {
        column-count: 3;
    }
}

@media (min-width: 1400px) {
    .portfolio-masonry {
        column-count: 4;
    }
}

.portfolio-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 1055;
    transition: opacity 0.3s ease;
}

.portfolio-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.portfolio-lightbox__inner {
    position: relative;
    width: 100%;
    max-width: 1280px;
    max-height: 90vh;
    padding: 1.5rem;
}

.portfolio-lightbox__body {
    background: rgba(255, 255, 255, 1);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    /* 전체 팝업 최대 높이 */
}

.portfolio-lightbox__image-wrap {
    text-align: center;
    max-height: 80vh;
    /* 이미지 영역 높이 제한 */
    overflow-y: auto;
    /* 이미지 영역만 스크롤 */
    padding: 0;
}

.portfolio-lightbox__image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 1080px;
    /* 너무 넓어지지 않게 */
    margin: 0 auto;
}

.portfolio-lightbox__caption {
    padding: 0;
    color: #f8f9fa;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    height: 0;
}

.portfolio-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0);
    color: #000;
    font-size: 1.6rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.portfolio-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.05);
}

@media (max-width: 575.98px) {
    .portfolio-lightbox__inner {
        padding-inline: 0.75rem;
    }

    .portfolio-lightbox__caption {
        padding-inline: 1rem;
    }
}

/* =========================
   COMMON CONTENT STYLES (formerly .dw-about)
   scope: .dw-content
========================= */

.dw-content {
    --ink: #0b0d13;
    --muted: #111111;
    --line: #e5e7eb;
    --surface: #ffffff;
    --accent: #ef4444;
    color: var(--ink);
}

.dw-content .muted {
    font-size: 1.1rem;
    color: var(--muted) !important;
}

.dw-content h1,
.dw-content h2,
.dw-content h3 {
    letter-spacing: -0.6px;
}

/* pill */
.dw-content .dw-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    font-size: 0.92rem;
    color: #111827;
}

/* Service Page Enhancements */
.dw-service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .dw-service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dw-svc-card {
    position: relative;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;

    background: #f3f3f7; /* 내부는 항상 흰색 */
    overflow: visible; /* 바깥 glow 잘리지 않게 */
    z-index: 0;

    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

/* ✅ 바깥 무지개 glow (카드 뒤) */
.dw-svc-card::before {
    content: "";
    position: absolute;
    inset: -10px; /* 카드 밖으로 확장 */
    border-radius: 28px; /* 카드보다 살짝 크게 */
    background: radial-gradient(700px 260px at 15% 20%, rgba(139, 92, 246, 0.55), rgba(59, 130, 246, 0.22), transparent 60%),
        radial-gradient(700px 260px at 85% 85%, rgba(34, 197, 94, 0.3), rgba(234, 179, 8, 0.22), rgba(249, 115, 22, 0.18), transparent 65%), radial-gradient(520px 220px at 85% 20%, rgba(236, 72, 153, 0.2), transparent 60%);
    filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    z-index: -2; /* 확실히 카드 뒤 */
    transition: opacity 0.35s ease;
}

/* ✅ 카드 내부를 “완전 흰색”으로 덮는 레이어 (글로우 차단) */
.dw-svc-card::after {
    content: "";
    position: absolute;
    inset: 0; /* 카드 안쪽 딱 맞게 */
    border-radius: inherit;
    background: #f3f3f7; /* 내부는 흰색 고정 */
    z-index: -1; /* 콘텐츠보다 뒤, glow보다는 위 */
    pointer-events: none;
}

/* 콘텐츠는 최상단 */
.dw-svc-card > * {
    position: relative;
    z-index: 1;
}

.dw-svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(17, 24, 39, 0.18);
}

.dw-svc-card:hover::before {
    opacity: 1;
}

.dw-svc-card .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dw-svc-card .title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.dw-svc-card .desc {
    font-size: 1.1rem;
    color: #111111;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.dw-svc-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.dw-svc-card .tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    background: #ffffff;
    border-radius: 6px;
    color: #6b7280;
    font-weight: 500;
}

/* Workflow Animation Section */
.dw-workflow-container {
    position: relative;
    padding: 2rem 0;
}

/* Connecting Line (Desktop) */
.dw-workflow-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
    display: none;
}

@media (min-width: 992px) {
    .dw-workflow-line {
        display: block;
        top: 90px;
        /* Center of the 80px icon */
    }
}

.dw-workflow-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Animation triggering class */
.dw-workflow-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.dw-workflow-step .step-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.dw-workflow-step:hover .step-icon {
    transform: translateY(-5px) scale(1.05);
    border-color: #ef4444;
    color: #ef4444;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.1);
}

.dw-workflow-step .step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    background: #111827;
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    z-index: 10;
}

.dw-workflow-step .step-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    color: #111;
}

.dw-workflow-step .step-desc {
    font-size: 0.92rem;
    color: #6b7280;
    line-height: 1.5;
    word-break: keep-all;
}

/* Staggered delay for animation */
.dw-workflow-step:nth-child(1) {
    transition-delay: 0.1s;
}

.dw-workflow-step:nth-child(2) {
    transition-delay: 0.3s;
}

.dw-workflow-step:nth-child(3) {
    transition-delay: 0.5s;
}

.dw-workflow-step:nth-child(4) {
    transition-delay: 0.7s;
}

.dw-content .dw-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 99px;
    background: #ef4444;
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.1);
}

/* big banner (cool-gray + soft blue) */
.dw-content .dw-banner {
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: radial-gradient(920px 460px at 12% 18%, rgba(17, 24, 39, 0.1), transparent 62%), radial-gradient(820px 460px at 92% 10%, rgba(59, 130, 246, 0.1), transparent 64%), linear-gradient(180deg, #ffffff, #fbfbfd);
    background-size: cover;
    background-position: center;
}

.dw-content .dw-banner-inner {
    padding: 48px;
    position: relative;
    z-index: 2;
}

/* Overlay for banner if image is used */
.dw-content .dw-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
    opacity: 0.8;
}

.dw-content .dw-banner.has-bg::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.dw-content .dw-banner-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(17, 24, 39, 0.1);
    color: rgba(17, 24, 39, 0.85);
    font-size: 0.88rem;
    backdrop-filter: blur(4px);
}

/* section rhythm */
.dw-content .dw-section {
    padding: 60px 0;
}

.dw-content .dw-h2 {
    letter-spacing: -0.7px;
}

/* cards */
.dw-content .dw-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
}

/* visual cards */
.dw-content .dw-visual {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    min-height: 240px;
    background-size: cover;
    background-position: center;
}

/* Overlay for text readability */
.dw-content .dw-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.dw-content .dw-visual .tag {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 0.82rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #111;
    font-weight: 600;
    z-index: 2;
}

.dw-content .dw-visual .title {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    font-weight: 800;
    font-size: 1.35rem;
    color: #fff;
    /* White text for cards with images */
    line-height: 1.2;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dw-content .dw-visual .sub {
    display: block;
    margin-top: 4px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* steps */
.dw-content .dw-step {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    padding: 18px;
    height: 100%;
}

.dw-content .dw-step .num {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #111827;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.dw-content .dw-mini {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 14px;
    background: #fff;
}

/* Service cards (from service.html) */
.dw-content .dw-svc {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    padding: 20px;
    height: 100%;
}

.dw-content .dw-svc .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.dw-content .dw-svc .badge {
    border: 1px solid rgba(17, 24, 39, 0.1) !important;
}

.dw-content .dw-svc ul {
    padding-left: 1.05rem;
    margin-bottom: 0;
}

.dw-content .dw-svc li {
    margin: 0.25rem 0;
}

/* Highlight box (moved from service) */
.dw-content .dw-highlight {
    border: 1px solid rgba(239, 68, 68, 0.18);
    background: rgba(239, 68, 68, 0.06);
    border-radius: 18px;
    padding: 18px;
}

/* section top (for portfolio/blog/contract header) */
.dw-content .dw-section-top {
    padding: 50px 0 28px;
}

/* chips for filters (portfolio, blog) */
.dw-content .dw-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: rgba(17, 24, 39, 0.78);
    font-size: 0.9rem;
    user-select: none;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.dw-content .dw-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(17, 24, 39, 0.18);
    background: rgba(17, 24, 39, 0.03);
}

.dw-content .dw-chip.is-active {
    border-color: rgba(239, 68, 68, 0.35);
    background: rgba(239, 68, 68, 0.06);
    color: rgba(17, 24, 39, 0.92);
    font-weight: 700;
}

/* simple search input look */
.dw-content .dw-search {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    background: #fff;
}

.dw-content .dw-search:focus {
    outline: none;
    border-color: rgba(17, 24, 39, 0.22);
    box-shadow: 0 0 0 0.2rem rgba(17, 24, 39, 0.08);
}

/* form hint box (contract) */
.dw-content .dw-hint {
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 18px;
    background: rgba(17, 24, 39, 0.02);
    padding: 18px;
}

/* input polish (only inside dw-content) */
.dw-content .form-control,
.dw-content .form-select,
.dw-content textarea {
    border-radius: 14px;
}

.dw-content .form-control:focus,
.dw-content .form-select:focus,
.dw-content textarea:focus {
    border-color: rgba(17, 24, 39, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(17, 24, 39, 0.08);
}

.btn-group .btn.active {
    color: #fff;
    background-color: #d9534f;
    border-color: #d9534f;
}

@media (max-width: 575.98px) {
    .btn-group .btn {
        padding: 0.3rem 0.7rem !important;
        font-size: 12px;
    }
}

/* portfolioLightbox 영역 전체 #################################### */

/* SEO Checker 영역 전체 ########################################## */
.seo-checker-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0);
    background: linear-gradient(160deg, rgba(237, 241, 245, 0.5) 0%, rgba(236, 216, 214, 0.5) 100%);
}

.seo-check-text span,
.seo-check-text input,
.seo-check-text input::placeholder {
    font-size: 1rem;
}

.seo-card {
    border-radius: 1.75rem;
    position: relative;
    overflow: hidden;
}

.seo-card::before {
    content: "";
    position: absolute;
    inset: 0%;
    background: #ffffff;
    opacity: 1;
    pointer-events: none;
}

.seo-result {
    padding-top: 60px;
}

.seo-card > * {
    position: relative;
    z-index: 1;
}

.seo-score-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: conic-gradient(from 270deg, #4f46e5 0deg, #22c55e 200deg, #e5e7eb 200deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.seo-score-circle::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: #ffffff;
}

.seo-score-number {
    position: relative;
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
}

#seoStrengthList li::before,
#seoIssueList li::before {
    content: "•";
    margin-right: 0.35rem;
    font-size: 1rem;
}

#seoStrengthList li::before {
    color: #16a34a;
}

#seoIssueList li::before {
    color: #f97316;
}

#seoStrengthList li,
#seoIssueList li {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

/* SEO Checker 영역 전체 ##################################### */

/* footer 영역 전체 ########################################## */
.footer {
    padding: 65px 0 35px;
    background-color: #0d0d0d;
    font-size: 0.85rem;
    line-height: 200%;
    margin-top: 60px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 767.98px) {
    .footer {
        padding: 45px 10px 25px;
    }
}

.footer h6 {
    font-weight: 300;
}

.footer ul li a {
    margin: 0;
    padding: 0;
    outline: 0;
    color: rgba(255, 255, 255, 1);
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer ul li::marker {
    color: rgba(255, 255, 255, 0.55);
}

.footer a:hover {
    text-decoration: underline;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer a.btn:hover {
    text-decoration: none;
}

.footer h5 {
    color: rgba(255, 255, 255, 0.55);
}

.footer p {
    color: rgba(255, 255, 255, 1);
}

.footer .site-logo {
    color: rgba(255, 255, 255, 0.55);
}

.footer .site-logo span {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 28px;
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.55);
}

.footer .legal a,
.footer .legal span {
    color: rgba(255, 255, 255, 0.55);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid #3a3a3a;
}

.footer .copyright p {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
}

/* footer 영역 전체 ########################################## */

/* Contact Form Styles */
.dw-form-section {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 2rem;
}

@media (min-width: 992px) {
    .dw-form-section {
        padding: 3rem;
    }
}

.dw-form-group {
    margin-bottom: 1.5rem;
}

.dw-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #111827;
}

.dw-form-label.required::after {
    content: "*";
    color: #ef4444;
    margin-left: 0.25rem;
}

.dw-form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    color: #1f2937;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.dw-form-control:focus {
    border-color: #ef4444;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

/* Optional fields - Blue color */
.dw-form-control:optional:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.dw-form-control::placeholder {
    color: #9ca3af;
}

textarea.dw-form-control {
    min-height: 150px;
    resize: vertical;
}

.dw-check-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.dw-check-item {
    position: relative;
}

.dw-check-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.dw-check-label {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    font-size: 0.9rem;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.dw-check-input:checked + .dw-check-label {
    background-color: #fef2f2;
    /* red-50 */
    border-color: #ef4444;
    color: #dc2626;
    font-weight: 600;
}

.dw-check-input:focus + .dw-check-label {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.dw-privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.dw-privacy-check input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1.1em;
    height: 1.1em;
    cursor: pointer;
    accent-color: #ef4444;
}

.dw-privacy-label {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #4b5563;
    cursor: pointer;
}

.dw-privacy-link {
    color: #111827;
    text-decoration: underline;
    font-weight: 500;
}

.dw-form-submit {
    margin-top: 2rem;
    text-align: center;
}

.btn-dw-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    background: #111827;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    border: none;
    transition: all 0.2s;
}

.btn-dw-primary:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border-bottom: 1px dotted #ececec;
    color: #111;
    padding-bottom: 1rem;
}

/* =========================================
	Visual Enhancements & Animations
========================================= */

/* 1. Fade Up Animation (Scroll Trigger) */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up-init {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up-init.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* 2. Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hover-scale img {
    transition: transform 0.5s ease;
}

.hover-scale:hover img {
    transform: scale(1.05);
}

/* 3. Text & Background Gradients */
.text-gradient {
    background: linear-gradient(135deg, #111827 0%, #4b5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-red {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-soft {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.bg-gradient-primary-soft {
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent 40%), radial-gradient(circle at bottom left, rgba(239, 68, 68, 0.03), transparent 40%);
}

/* 4. Card Enhancements */
.dw-card-enhanced {
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.dw-card-enhanced:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
    border-color: rgba(0, 0, 0, 0.08);
    /* slight darken */
}

/* Icon Box Style */
.icon-box-soft {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.icon-box-red {
    background: #fef2f2;
    color: #ef4444;
}

.icon-box-blue {
    background: #eff6ff;
    color: #3b82f6;
}

.icon-box-gray {
    background: #f3f4f6;
    color: #4b5563;
}

/* Portfolio Item Hover */
.portfolio-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Blog Card */
.dw-blog-card {
    display: block;
    height: 100%;
    color: inherit;
    transition: all 0.3s ease;
}

.dw-blog-card:hover {
    color: inherit;
    transform: translateY(-5px);
}

.dw-blog-card .thumb {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    padding-top: 60%;
    background: #f3f4f6;
}

.dw-blog-card .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dw-blog-card:hover .thumb img {
    transform: scale(1.05);
}

.dw-blog-card .meta {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.dw-blog-card .title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color 0.2s;
}

.dw-blog-card:hover .title {
    color: #d9534f;
    /* Brand Red */
}

.dw-blog-card .desc {
    color: #4b5563;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.dw-article {
    padding: 2rem 3rem;
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}
@media (max-width: 720px) {
    .dw-article {
        padding: 2rem 1rem;
    }
}
