.blog-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-title {
    font-size: 24px;
    color: #363636;
}

.blog-bot {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-bot-grv2 {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f2ecfc;
    border-radius: 7px;
    transition: all 0.3s ease;
}

.blog-bot-grv2:hover {
    background: #e8d9f7;
    transform: translateY(-1px);
}

.blog-bot-grv2 .icon img {
    width: 15px;
    height: 15px;
}

.blog-bot-grv2 .text {
    font-size: 12px;
    color: #3a3a3a;
    font-weight: 500;
}

.content-v1 {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.content-left {
    flex: 1;
    max-width: calc(100% - 350px);
}

.content-left-v1 {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
}

.content-center {
    display: none;
}

.content-right {
    flex: 0 0 320px;
    max-width: 320px;
}

.content-right-v1 {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-body {
    transition: all 0.3s ease;
}

/* 4K and Ultra-wide Screens */
@media (min-width: 1600px) {
}

/* Ultra Large Devices (Extra Large Desktop) */
@media (max-width: 1599px) {
}

/* XXL Devices (Large Desktop) */
@media (max-width: 1399px) {
}

/* Extra Large Devices (Small Desktop) */
@media (max-width: 1199px) {
    .content-v1 {
        flex-direction: column;
        gap: 20px;
    }

    .content-left {
        max-width: 100%;
    }

    .content-right {
        flex: none;
        max-width: 100%;
    }

    .content-right-v1 {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        gap: 20px;
    }
}

/* Large Devices (Tablets) */
@media (max-width: 991px) {
    .blog-top h1 {
        font-size: 24px;
    }

    .blog-bot {
        position: static;
        justify-content: flex-start;
    }

    .content-right-v1 {
        flex-direction: column;
    }
    .content-v1 {
        flex-direction: column-reverse;
        margin-top: 16px;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 767px) {
}

/* Small Devices (Phones) */
@media (max-width: 575px) {
}

/* Extra Small Devices */
@media (max-width: 374px) {
}
