.blog-module {
    padding: 32px 0;
    position: relative;
    overflow: hidden;
}

.blog-module__container {
    margin-bottom: 24px;
}

.blog-module__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.blog-module__head .min-title {
    margin: 0;
}

.blog-module__head .h2 {
    margin: 0;
    padding: 0;
}

.blog-module__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white, #fff);
    background-color: var(--black, #202124);
    border: 1px solid var(--black, #202124);
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    cursor: pointer;
}

.blog-module__button svg {
    flex-shrink: 0;
}

.blog-module__button:hover {
    background-color: var(--primary-hover, #FF5F1B);
    border-color: var(--primary-hover, #FF5F1B);
    color: var(--black, #202124);
}

.blog-module__button:hover svg path {
    stroke: var(--black, #202124);
}

/* Swiper */
.blog-module__slider {
    overflow: visible;
}

.blog-module__slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.blog-module__slider .swiper-slide {
    height: auto;
}

/* Card */
.blog-module__card {
    width: 292px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style-type: none;
    margin: 0;
    padding: 12px 12px 20px;
    background: var(--white, #fff);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0px 5px 50px 0px #1211271A;
    backdrop-filter: blur(4px)

}

.blog-module__card .share{
    border-radius: 0;
}

.blog-module__card-image {
    position: relative;
    height: 158px;
    overflow: hidden;
}

.blog-module__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-module__card-date {
    position: absolute;
    bottom: 6px;
    left: 6px;
    color: var(--black, #202124);
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    padding: 4px 8px;
    background: var(--white, #ffffff);
    margin: 0;
}

.blog-module__card-share {
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px;
}

.blog-module__card-content {
    padding: 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.blog-module__card-title {
    color: var(--black, #202124);
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    text-decoration: none;
    margin: 0;
    transition: opacity 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-module__card-title:hover {
    opacity: 0.6;
}

.blog-module__card-description {
    color: var(--black, #202124);
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tablet 768px+ */
@media (min-width: 768px) {
    .blog-module {
        padding: 48px 0;
    }

    .blog-module__head {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .blog-module__head-left {
        display: flex;
        flex-direction: column;
    }

    .blog-module__card {
        padding: 18px 18px 32px;
    }

    .blog-module__card-image {
        height: 256px;
    }
}

/* PC 1024px+ */
@media (min-width: 1024px) {
    .blog-module {
        padding: 64px 0;
    }

    .blog-module__container {
        margin-bottom: 32px;
    }

    .blog-module__card-image {
        height: 256px;
    }
}
