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

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

.blog-authors {
    margin-top: 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-authors a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.blog-authors a:hover {
    transform: translateY(-2px);
}

.blog-authors-img {
    flex-shrink: 0;
}

.blog-authors-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-authors-text {
    margin-left: 15px;
}

.blog-authors-text .name {
    color: #3a3a3a;
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 4px 0;
}

.blog-authors-text .level {
    color: #9e9d96;
    font-size: 10px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.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: 0;
}

.content-center {
    display: none;
}

.content-center-v1 {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
}

.content-center-v1 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-center-v1 h2 {
    color: #3a3a3a;
    font-weight: 700;
    font-size: 28px;
    margin: 30px 0 20px 0;
    border-left: 4px solid #333333;
    padding-left: 20px;
}

.content-center-v1 h2 span {
    color: #333333;
}

.content-center-v1 p {
    margin: 20px 0;
    color: #3a3a3a;
    word-spacing: 2px;
    text-align: justify;
}

.content-center-v1 a {
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.content-center-v1 a:hover {
    color: #333333;
    text-decoration: underline;
}

.content-center-v1 ul {
    list-style: none;
    padding-left: 0;
}

.content-center-v1 ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.content-center-v1 ul li:before {
    content: "•";
    color: #333333;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.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;
}

.sidebar-blog {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sidebar-blog:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-blog a {
    display: block;
    text-decoration: none;
}

.sidebar-blog a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

/* 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;
    }

    .sidebar-blog {
        flex: 0 0 250px;
    }
}

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

    .blog-authors {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

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

    .content-right-v1 {
        flex-direction: column;
    }

    .sidebar-blog {
        flex: none;
    }

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

    .sidebar-blog {
        display: none;
    }
}

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

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

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