/*==================================================
Latest Terminal Guides
==================================================*/

.latest-guides {
    padding: 20px 0;
    background: #f8fafc;
}


/*==================================================
Section Heading
==================================================*/

.latest-guides .section-heading {
    max-width: 700px;
    margin: 0 auto 25px;
    text-align: center;
}

.latest-guides .section-heading h2 {
    margin-bottom: 15px;
    font-size: 2.625rem; /* 42px */
    font-weight: 700;
    color: var(--secondary);
}

.latest-guides .section-heading p {
    margin: 0;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
}

/*==================================================
Top Header
==================================================*/

.latest-guides .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;
}

.latest-guides .section-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.latest-guides .section-header p {
    margin: 10px 0 0;
    color: #6c757d;
}

/*==================================================
View All
==================================================*/

.latest-guides .view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.latest-guides .view-all:hover {
    gap: 14px;
}

/*==================================================
Responsive
==================================================*/

@media (max-width: 768px) {

    .latest-guides {
        padding: 40px 0;
    }

    .latest-guides .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .latest-guides .section-heading h2,
    .latest-guides .section-header h2 {
        font-size: 2rem;
    }

}