.read-more .boxed {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.read-more .boxed .right {
    display: grid;
    gap: 40px;
}

.read-more .boxed .right .blue {
    background-color: var(--soft-aqua);
    padding: 60px 40px 40px 40px;
    border-radius: 8px;
}

.read-more .boxed .right .yellow {
    background-color: var(--warm-vanilla);
    padding: 60px 40px 40px 40px;
    border-radius: 8px;
}

.read-more .boxed .right .blue h3, .read-more .boxed .right .yellow h3 {
    font-size: 36px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -0.9px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--deep-teal);
}

.read-more .boxed .right .btn-group > .btn {
    width: 100%;
    justify-content: center;
    background-color: var(--pure-white);
}

.read-more .boxed .right .btn-group > .btn:hover {
    background-color: #F7F9F9;
}

.read-more .boxed .right .btn-group > .btn::after {
    content: url("images/btn-arrow.svg");
}

.read-more .boxed .right .blue .activities {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.read-more .boxed .right .blue .activities .item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.read-more .boxed .right .yellow .publications .item {
    border-bottom: 1px solid #7DDAE7;
    margin-bottom: 30px;
}

.read-more .boxed .right .yellow .publications .item p {
    margin-bottom: 30px;
}

.read-more .boxed .right .yellow .publications .item:last-child {
    border-bottom: none;
}

.read-more .boxed .right .blue .activities .item a, .read-more .boxed .right .yellow .publications .item a, .read-more .boxed .left .posts .item a {
    text-decoration: none;
}

.read-more .boxed .right .blue .activities .item .date {
    background-color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 22px;
    padding: 5px;
}

.read-more .boxed .right .blue .activities .item .date p {
    font-size: 14px;
    font-family: Opensans-700, Arial, sans-serif;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: var(--deep-teal);
}

.read-more .boxed .left .posts {
    display: grid;
    gap: 40px;
    margin-bottom: 80px;
}

.read-more .boxed .left .btn-group {
   justify-content: center;
}

.read-more .boxed .left .posts .item .date {
    font-size: 14px;
    font-family: Opensans-400, Arial, sans-serif;
    line-height: 28px;
    color: var(--muted-green);
    margin-bottom: 0;
}

.read-more .boxed .right .blue .activities .item .info p, .read-more .boxed .right .blue .activities .item .date p {
    margin-bottom: 0;
}

.read-more .boxed .right .blue .activities .item .info h4, .read-more .boxed .right .yellow .publications .item h4 {
    font-family: Opensans-700, sans-serif;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    color: var(--deep-teal);
}

.read-more .boxed .left .posts .item .info h4 {
    font-family: Opensans-700, sans-serif;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 12px;
    color: var(--deep-teal);
}

.read-more .boxed .left .posts .item .info a.btn {
    border: none;
    padding: 0;
}

.read-more .boxed .left .posts .item .info a.btn:hover {
    color: var(--ocean-blue);
}

.read-more .boxed .left .posts .item .info a:hover.btn-outline::after {
    content: url("images/blue-arrow.svg");
}

.read-more .boxed .left .posts .item .image {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.read-more .boxed .left .posts .item .image img {
    width: 100%;
    max-width: 440px;
    max-height: 400px;
    display: block;
    border-radius: 8px;
}

.read-more .boxed .left .posts .item .image .category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--golden-yellow);
    color: var(--deep-teal);
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .read-more .boxed {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 440px) {
    .read-more .boxed .right .blue .activities .item .date p {
        font-size: 12px;
    }
    .read-more .boxed .right .blue, .read-more .boxed .right .yellow {
        padding: 40px 20px 20px 20px;
    }
}