.wspage .tw-container {
    padding: 32px 0;
    display: grid;
    grid-template-columns: 2fr 8fr;
    gap: 24px;
}

.wspage .tw-container .col__one {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wspage .tw-container .col__one h1 {
    color: #213868;
    font-family: Montserrat Bold;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
}

.wspage__sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wspage__sidebar h3 {
    padding: 8px 12px;
    color: #9E9E9E;
    font-weight: 400;
    font-size: 14px;
    line-height: 145%;
    text-transform: uppercase;
    cursor: pointer;
}

.wspage__sidebar h3.active,
.wspage__sidebar h3:hover {
    background-color: #F0F7FE;
    color: #213868;
}

.wspage .tw-container .col__two {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 24px;
}

.wspage .tw-container .wspage__sidebar__follow {
    display: grid;
    grid-template-columns: 3.5fr 8.5fr;
    gap: 16px;
}

.wspage .tw-container .col__three {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.col__three__img,
.col__three__imgtwo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.col__three__img img,
.col__three__imgtwo img,
.col__three__img .cln img,
.col__three__img .alone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.col__three__img .cln {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* TÍNH NĂNG READ MORE – ĐÃ FIX 100% */
.wspage__sidebar__follow__content {
    position: relative;
    max-height: 490px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    font-size: 14px;
    line-height: 145% !important;
    color: #616161;
}
.wspage__sidebar__follow__content p {
    font-size: 14px !important;
}
/* Nội dung mở rộng */
.wspage__sidebar__follow__content.expanded {
    max-height: none !important;
}

/* Gradient mờ + nút Xem thêm chỉ hiện khi cần */
.wspage__sidebar__follow__content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Chỉ hiện gradient + nút khi nội dung vượt quá 490px */
.wspage__sidebar__follow__content.need-readmore::after {
    opacity: 1;
}

.read__more {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #213868;
    font-weight: 500;
    font-size: 16px;
}

/* Chỉ hiện nút khi cần */
.wspage__sidebar__follow__content.need-readmore .read__more {
    opacity: 1;
    visibility: visible;
}

/* Khi đã mở rồi thì ẩn nút + gradient */
.wspage__sidebar__follow__content.expanded .read__more,
.wspage__sidebar__follow__content.expanded::after {
    display: none !important;
}

.read__more.active img {
    transform: rotate(180deg);
}



.wspage__sidebar__follow__content p,
.wspage__sidebar__follow__content ul,
.wspage__sidebar__follow__content ol,
.wspage__sidebar__follow__content h1,
.wspage__sidebar__follow__content h2,
.wspage__sidebar__follow__content h3,
.wspage__sidebar__follow__content h4,
.wspage__sidebar__follow__content h5,
.wspage__sidebar__follow__content h6 {
    margin: 0 0 16px 0;
    padding: 0;
}

.wspage__sidebar__follow__content h1,
.wspage__sidebar__follow__content h2,
.wspage__sidebar__follow__content h3,
.wspage__sidebar__follow__content h4,
.wspage__sidebar__follow__content h5,
.wspage__sidebar__follow__content h6 {
    font-family: Montserrat Bold;
}

.wspage__sidebar__follow__content p:last-child,
.wspage__sidebar__follow__content ul:last-child,
.wspage__sidebar__follow__content ol:last-child {
    margin-bottom: 0;
}

/* Heading */
.wspage__sidebar__follow__content h2 {
    font-size: 18px;
    font-weight: 600;
    color: #213868;
    margin: 24px 0 16px 0;
    text-align: center;
}

.wspage__sidebar__follow__content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #213868;
    margin: 20px 0 12px 0;
}

/* Danh sách ul, li */
.wspage__sidebar__follow__content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.wspage__sidebar__follow__content ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 8px;
    font-size: 14px;
}

.wspage__sidebar__follow__content ul li::before {
    content: "•";
    color: #213868;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Danh sách ol (nếu cần) */
.wspage__sidebar__follow__content ol {
    margin: 16px 0;
    padding-left: 24px;
    counter-reset: ol-counter;
}

.wspage__sidebar__follow__content ol li {
    counter-increment: ol-counter;
    margin-bottom: 10px;
    position: relative;
}

.wspage__sidebar__follow__content ol li::before {
    content: counter(ol-counter) ".";
    color: #213868;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.wspage__sidebar__follow__content strong {
    font-weight: 600;
    color: #213868;
}

.wspage__sidebar__follow__content em {
    font-style: italic;
}

.wspage__sidebar__follow__content .text-center,
.wspage__sidebar__follow__content *[style*="text-align: center"] {
    text-align: center !important;
}

.wspage__sidebar__follow__content .text-left,
.wspage__sidebar__follow__content *[style*="text-align: left"] {
    text-align: left !important;
}

.wspage__sidebar__follow__content .text-right,
.wspage__sidebar__follow__content *[style*="text-align: right"] {
    text-align: right !important;
}

.wspage__sidebar__follow__content [style*="color"] {
    color: inherit !important;
}

.wspage__sidebar__follow__content [style*="color: #213868"],
.wspage__sidebar__follow__content [style*="color:#213868"] {
    color: #213868 !important;
}

.wspage__sidebar__follow__content br {
    display: block;
    content: "";
    margin: 8px 0;
}

@media screen and (max-width: 768px) {
    .wspage__sidebar__follow__content {
        font-size: 13px;
        line-height: 150%;
    }

    .wspage__sidebar__follow__content h2 {
        font-size: 16px;
    }

    .wspage__sidebar__follow__content ul {
        padding-left: 16px;
    }

    .wspage__sidebar__follow__content ul li {
        margin-bottom: 12px;
    }
}

/* === RESPONSIVE GỐC CỦA BẠN === */
@media screen and (max-width: 1440px) {
    .wspage .tw-container {
        grid-template-columns: 2fr 7fr;
    }
}

@media screen and (max-width: 1024px) {
    .wspage .tw-container {
        grid-template-columns: 2fr 8fr;
        max-width: 890px;
    }

    .wspage .tw-container .col__two {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 998px) {
    .wspage .tw-container {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .wspage .tw-container .col__one h1 {
        font-size: 16px;
    }

    .wspage__sidebar h3 {
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    .wspage .tw-container {
        max-width: 100%;
        padding: 48px 15px;
    }

    .wspage .tw-container .wspage__sidebar__follow {
        grid-template-columns: 1fr;
    }

    .wspage__sidebar__follow__image {
        display: none;
    }

    .read__more {
        font-size: 14px;
    }

    .read__more img {
        width: 14px;
    }
}