.poem-card {
    border-radius: 16px;
    overflow: hidden;
    background: #2a2758 !important;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* نوار مورب سمت چپ */
.poet-label {
    position: absolute;
    top: 20px;
    left: -40px;
    background: #ff4c60;
    /* رنگ جذاب */
    color: #fff;
    font-weight: bold;
    padding: 6px 50px;
    transform: rotate(-45deg);
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
    text-align: center;
}

/* عنوان روی تصویر */
.poem-title-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 12px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
}

.poet-img-wrapper {
    height: 220px;
    overflow: hidden;
}

.poet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.poem-card:hover .poet-img {
    transform: scale(1.05);
}

.poem-content {
    padding: 18px;
    background: #2a2758 !important;
}

.poem-date {
    display: block;
    font-size: 12px;
    color: #e4e4e4;
    margin-bottom: 12px;
}

.poem-text {
    font-family: inherit;
    font-size: 14px;
    line-height: 1.8;
    color: #e4e4e4;
    margin: 0;
}