/* style/blog-how-to-choose-best-pk14-link.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-dark: #26A9E0;
    --login-button-color: #EA7C07;
}

.page-blog-how-to-choose-best-pk14-link {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light); /* Assuming body background is light for general content */
}

.page-blog-how-to-choose-best-pk14-link__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-how-to-choose-best-pk14-link__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden;
}

.page-blog-how-to-choose-best-pk14-link__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.page-blog-how-to-choose-best-pk14-link__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-how-to-choose-best-pk14-link__hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.page-blog-how-to-choose-best-pk14-link__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-blog-how-to-choose-best-pk14-link__hero-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-choose-best-pk14-link__section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-blog-how-to-choose-best-pk14-link__section-title--white {
    color: var(--text-light);
}

.page-blog-how-to-choose-best-pk14-link__text-block {
    font-size: 1.05rem;
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-how-to-choose-best-pk14-link__text-block--white {
    color: var(--text-light);
}

.page-blog-how-to-choose-best-pk14-link__intro-section,
.page-blog-how-to-choose-best-pk14-link__content-section,
.page-blog-how-to-choose-best-pk14-link__user-reviews-section,
.page-blog-how-to-choose-best-pk14-link__faq-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-blog-how-to-choose-best-pk14-link__dark-bg {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0;
}

.page-blog-how-to-choose-best-pk14-link__criteria-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-choose-best-pk14-link__card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
}

.page-blog-how-to-choose-best-pk14-link__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-how-to-choose-best-pk14-link__card-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-how-to-choose-best-pk14-link__cta-block {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: rgba(38, 169, 224, 0.1); /* Light tint of primary color */
    border-radius: 10px;
}

.page-blog-how-to-choose-best-pk14-link__cta-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 500;
}

.page-blog-how-to-choose-best-pk14-link__btn-primary {
    display: inline-block;
    background-color: var(--login-button-color); /* Using login color for primary CTA */
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.page-blog-how-to-choose-best-pk14-link__btn-primary:hover {
    background-color: #d16b06;
    transform: translateY(-2px);
}

.page-blog-how-to-choose-best-pk14-link__comparison-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.page-blog-how-to-choose-best-pk14-link__table-header,
.page-blog-how-to-choose-best-pk14-link__table-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-blog-how-to-choose-best-pk14-link__table-header {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: bold;
}

.page-blog-how-to-choose-best-pk14-link__table-cell {
    padding: 15px 20px;
    color: var(--text-light);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.page-blog-how-to-choose-best-pk14-link__table-cell:last-child {
    border-right: none;
}

.page-blog-how-to-choose-best-pk14-link__table-row:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-how-to-choose-best-pk14-link__table-row:last-child {
    border-bottom: none;
}

.page-blog-how-to-choose-best-pk14-link__reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-choose-best-pk14-link__review-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    color: var(--text-dark);
}

.page-blog-how-to-choose-best-pk14-link__review-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-blog-how-to-choose-best-pk14-link__review-author {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-how-to-choose-best-pk14-link__review-text {
    font-style: italic;
    color: #555;
}

.page-blog-how-to-choose-best-pk14-link__faq-list {
    margin-top: 40px;
}

.page-blog-how-to-choose-best-pk14-link__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-dark);
}

.page-blog-how-to-choose-best-pk14-link__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.page-blog-how-to-choose-best-pk14-link__faq-question:hover {
    background-color: #f0f0f0;
}

.page-blog-how-to-choose-best-pk14-link__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-how-to-choose-best-pk14-link__faq-item[open] .page-blog-how-to-choose-best-pk14-link__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-how-to-choose-best-pk14-link__faq-answer {
    padding: 20px;
    font-size: 1rem;
    color: var(--text-dark);
    border-top: 1px solid #e0e0e0;
}

.page-blog-how-to-choose-best-pk14-link__faq-answer p {
    margin-bottom: 0;
}

.page-blog-how-to-choose-best-pk14-link__conclusion-section {
    text-align: center;
    padding: 80px 0;
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .page-blog-how-to-choose-best-pk14-link__hero-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-blog-how-to-choose-best-pk14-link__section-title {
        font-size: 2rem;
    }

    .page-blog-how-to-choose-best-pk14-link__table-header,
    .page-blog-how-to-choose-best-pk14-link__table-row {
        grid-template-columns: 1fr 1fr;
    }

    .page-blog-how-to-choose-best-pk14-link__table-header .page-blog-how-to-choose-best-pk14-link__table-cell:first-child {
        grid-column: span 2;
    }
    .page-blog-how-to-choose-best-pk14-link__table-row .page-blog-how-to-choose-best-pk14-link__table-cell:first-child {
        grid-column: span 2;
        font-weight: bold;
        background-color: rgba(255, 255, 255, 0.1);
    }
    .page-blog-how-to-choose-best-pk14-link__table-header .page-blog-how-to-choose-best-pk14-link__table-cell:nth-child(2) {
        grid-column: 1 / 2;
    }
    .page-blog-how-to-choose-best-pk14-link__table-header .page-blog-how-to-choose-best-pk14-link__table-cell:nth-child(3) {
        grid-column: 2 / 3;
    }
    .page-blog-how-to-choose-best-pk14-link__table-header .page-blog-how-to-choose-best-pk14-link__table-cell:nth-child(4) {
        display: none;
    }

    .page-blog-how-to-choose-best-pk14-link__table-row .page-blog-how-to-choose-best-pk14-link__table-cell:nth-child(4) {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-choose-best-pk14-link {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-how-to-choose-best-pk14-link__hero-section {
        padding-bottom: 40px;
    }

    .page-blog-how-to-choose-best-pk14-link__hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-blog-how-to-choose-best-pk14-link__hero-description {
        font-size: 1rem;
    }

    .page-blog-how-to-choose-best-pk14-link__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-blog-how-to-choose-best-pk14-link__intro-section,
    .page-blog-how-to-choose-best-pk14-link__content-section,
    .page-blog-how-to-choose-best-pk14-link__user-reviews-section,
    .page-blog-how-to-choose-best-pk14-link__faq-section,
    .page-blog-how-to-choose-best-pk14-link__dark-bg {
        padding: 40px 0;
    }

    .page-blog-how-to-choose-best-pk14-link__criteria-list,
    .page-blog-how-to-choose-best-pk14-link__reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-how-to-choose-best-pk14-link__card,
    .page-blog-how-to-choose-best-pk14-link__review-card {
        padding: 20px;
    }

    .page-blog-how-to-choose-best-pk14-link__cta-block {
        padding: 20px;
    }

    .page-blog-how-to-choose-best-pk14-link__cta-text {
        font-size: 1.1rem;
    }

    .page-blog-how-to-choose-best-pk14-link__btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-how-to-choose-best-pk14-link__table-header,
    .page-blog-how-to-choose-best-pk14-link__table-row {
        grid-template-columns: 1fr;
        border-bottom: none;
    }

    .page-blog-how-to-choose-best-pk14-link__table-header .page-blog-how-to-choose-best-pk14-link__table-cell:first-child {
        grid-column: span 1;
    }
    .page-blog-how-to-choose-best-pk14-link__table-row .page-blog-how-to-choose-best-pk14-link__table-cell:first-child {
        grid-column: span 1;
        background-color: rgba(255, 255, 255, 0.15);
    }
    .page-blog-how-to-choose-best-pk14-link__table-header .page-blog-how-to-choose-best-pk14-link__table-cell:nth-child(2) {
        grid-column: 1 / 2;
    }
    .page-blog-how-to-choose-best-pk14-link__table-header .page-blog-how-to-choose-best-pk14-link__table-cell:nth-child(3) {
        display: none;
    }
    .page-blog-how-to-choose-best-pk14-link__table-header .page-blog-how-to-choose-best-pk14-link__table-cell:nth-child(4) {
        display: none;
    }
    .page-blog-how-to-choose-best-pk14-link__table-row .page-blog-how-to-choose-best-pk14-link__table-cell:nth-child(3),
    .page-blog-how-to-choose-best-pk14-link__table-row .page-blog-how-to-choose-best-pk14-link__table-cell:nth-child(4) {
        display: none;
    }

    .page-blog-how-to-choose-best-pk14-link__table-cell {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .page-blog-how-to-choose-best-pk14-link__table-row:last-child .page-blog-how-to-choose-best-pk14-link__table-cell:last-child {
        border-bottom: none;
    }

    .page-blog-how-to-choose-best-pk14-link__review-image {
        height: 180px;
    }

    .page-blog-how-to-choose-best-pk14-link img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-how-to-choose-best-pk14-link__hero-section,
    .page-blog-how-to-choose-best-pk14-link__intro-section .page-blog-how-to-choose-best-pk14-link__container,
    .page-blog-how-to-choose-best-pk14-link__content-section .page-blog-how-to-choose-best-pk14-link__container,
    .page-blog-how-to-choose-best-pk14-link__comparison-section .page-blog-how-to-choose-best-pk14-link__container,
    .page-blog-how-to-choose-best-pk14-link__user-reviews-section .page-blog-how-to-choose-best-pk14-link__container,
    .page-blog-how-to-choose-best-pk14-link__faq-section .page-blog-how-to-choose-best-pk14-link__container,
    .page-blog-how-to-choose-best-pk14-link__conclusion-section .page-blog-how-to-choose-best-pk14-link__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-how-to-choose-best-pk14-link__video-section {
        padding-top: 10px !important; /* body đã xử lý padding-top: var(--header-offset); */
    }
}