.apply-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.breadcrumb {
    width: 100%;
    background-color: #f8f9fa;
}

.breadcrumb small {
    padding: 10px;
    max-width: 1400px;
    margin: 0 auto;
    color: #7a7a7a;
    text-align: left;
    font-size: .9rem;
}

.layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
}

/* Content */
.content h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

.apply-subtitle {
    font-size: 16px;
    color: #000000;
    margin-bottom: 15px;
}

.meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.apply-card img {
    width: 80%;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.ad-label {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

/* Sidebar */
.sidebar {
    max-height: 300px;
    border-left: 3px solid #52aa34;
    padding-left: 20px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.sidebar h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    padding: 10px 0;
    font-size: 16px;
    color: #52aa34;
    cursor: pointer;
}

/* Tablet */
@media (max-width: 992px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        border-left: none;
        border-top: 3px solid #38c98a;
        padding-top: 15px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .content h1 {
        font-size: 24px;
    }

    .meta {
        flex-direction: column;
        gap: 6px;
    }

    .sidebar h3 {
        font-size: 20px;
    }
}



.divider {
    border: none;
    border-top: 1px solid #dcdcdc;
    margin-bottom: 25px;
}

.text {
    font-size: 17.6px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

/* CTA */
.cta-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.cta-wrapper .apply-btn {
    width: 100%;
    background: #2046b3;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    padding: 18px 20px;
    border: 2px solid #000000;
    cursor: pointer;
}

.redirect-text {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #6b6b6b;
}


/* Tablet */
@media (max-width: 992px) {
    .cta-wrapper .apply-btn {
        font-size: 20px;
    }

    .text {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .apply-section {
        padding: 30px 15px;
    }

    .apply-btn {
        font-size: 18px;
        padding: 16px;
    }

    .text {
        font-size: 14.5px;
    }
}

/* ===== Key Rewards Section ===== */


.rewards-section {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.rewards-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f1f1f;
}

.rewards-subtitle {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 14px;
}

/* Advertisement divider (same style as previous sections) */
.ad-divider {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.ad-divider::before,
.ad-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #dcdcdc;
}

.ad-divider span {
    font-size: 12px;
    color: #6b6b6b;
    padding: 0 14px;
    white-space: nowrap;
}

/* Rewards list */
.rewards-list-wrapper {
    border-left: 6px solid #4caf50;
    padding-left: 40px;
    margin-bottom: 30px;
}

.rewards-list {
    list-style: disc;
}

.rewards-list-wrapper,
.rewards-list li {
    font-size: 16px;
    color: #3d3d3d;
    line-height: 2;
}

.list-number{
    list-style: decimal;
}
.rewards-footer-text {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

/* ===== Tablet ===== */
@media (max-width: 992px) {
    .rewards-title {
        font-size: 28px;
    }

    .rewards-list li,
    .rewards-footer-text {
        font-size: 15px;
    }
}

/* ===== Mobile ===== */
@media (max-width: 576px) {
    .rewards-section {
        padding: 40px 15px;
    }

    .rewards-title {
        font-size: 24px;
    }

    .rewards-list-wrapper {
        padding-left: 16px;
    }

    .rewards-list li,
    .rewards-footer-text {
        font-size: 14.5px;
    }
}


/* related blog */
.blog-section-title {
    font-size: 32px;
    margin-bottom: 18px;
    position: relative;
}

.blog-section-title::after {
    content: "";
    width: 40px;
    height: 4px;
    background: #52aa34;
    position: absolute;
    left: 0;
    bottom: -6px;
    border-radius: 3px;
}

/* AUTHOR */
.author-card {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    max-width: 720px;
}

.author-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.author-card h3 {
    font-size: 18px;
}

.role {
    font-size: 14px;
    color: var(--text-light);
}

.author-card p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

/* GRID */
.grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* CARD */
.related-blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-blog {
    border: 2px solid #ecebebc0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
}

.related-blog:hover {
    transform: translateY(-6px);
}

.related-blog img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    position: relative;
}

.related-blog .wave {
    background: var(--primary);
    height: 40px;
    border-top-left-radius: 100% 50%;
    border-top-right-radius: 100% 50%;
    margin-top: -20px;
}

.blog-content {
    padding: 18px;
}

.blog-meta {
    display: flex;
    gap: 14px;
    font-size: 14px;
    margin-bottom: 10px;
}

.related-blog h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.related-blog h4 :hover {
    color: #52aa34;
}

.related-blog p {
    font-size: 16px;
    color: #0000EE;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .author-card {
        flex-direction: column;
    }
}