:root {
    --primary-color: #0e539a;
    --secondary-color: #c2e0ff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
}

.author-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--primary-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid var(--primary-color);
    margin-bottom: 20px;
}

.section-title {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.title-heading {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;

    line-height: 1.3;
    cursor: pointer;
    margin: 0;
}

.title-large {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 5px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer;
}

.title-large-two {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 5px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer;
}

.title-large-fn {
    height: 3.9rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 5px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer;
}

.title-small {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 0px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer;
}

.title-medium {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 8px 0 0px;
    line-height: 1.3;
    cursor: pointer;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.title-large:hover,
.title-heading:hover,
.title-medium:hover,
.title-small:hover {
    color: var(--primary-color);
}
@media (max-width: 992px) {
    .container {
        padding: 0 40px;
    }
    .author-img {
        width: 30px;
        height: 30px;
    }

    .title-heading {
        font-size: 2rem;
    }

    .title-large-fn {
        height: auto;
        -webkit-line-clamp: 3;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
    .author-img {
        width: 25px;
        height: 25px;
    }
}

a {
    text-decoration: none;
    color: inherit;
}
