.bedots-articles {
    padding: 64px 0 72px;
    background: #fff;
}

.bedots-articles__header {
    max-width: 680px;
    margin: 0 auto 44px;
    text-align: center;
}

.bedots-articles__title {
    margin: 0 0 10px;
    color: #1c1c1c;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 3.2vw, 2.4rem);
    font-weight: 700;
    line-height: 1.15;
}

.bedots-articles__subtitle {
    margin: 0;
    color: #8a8a8a;
    font-size: 15px;
    line-height: 1.6;
}

.bedots-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.bedots-articles__card {
    display: flex;
    flex-direction: column;
}

.bedots-articles__media {
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
    border-radius: 14px;
    background: #f3f3f3;
    aspect-ratio: 16 / 11;
}

.bedots-articles__media a {
    display: block;
    width: 100%;
    height: 100%;
}

.bedots-articles__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bedots-articles__card:hover .bedots-articles__media img {
    transform: scale(1.04);
}

.bedots-articles__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
    color: #9a9a9a;
    font-size: 13px;
}

.bedots-articles__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bedots-articles__meta-item i {
    font-size: 14px;
}

.bedots-articles__post-title {
    margin: 0 0 10px;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;
}

.bedots-articles__post-title a {
    color: #1c1c1c;
    text-decoration: none;
}

.bedots-articles__post-title a:hover {
    color: #555;
}

.bedots-articles__excerpt {
    margin: 0 0 16px;
    color: #8a8a8a;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bedots-articles__readmore {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: #1c1c1c;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.bedots-articles__readmore i {
    transition: transform 0.2s ease;
}

.bedots-articles__readmore:hover {
    color: #1c1c1c;
}

.bedots-articles__readmore:hover i {
    transform: translateX(4px);
}

.bedots-articles__footer {
    margin-top: 48px;
    text-align: center;
}

.bedots-articles__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #1c1c1c;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.bedots-articles__btn:hover {
    background: #111;
    color: #fff;
}

@media screen and (max-width: 991px) {
    .bedots-articles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }
}

@media screen and (max-width: 575px) {
    .bedots-articles {
        padding: 48px 0 56px;
    }

    .bedots-articles__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
