    .dtr-post-item {
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        padding: 15px;
        transition: transform 0.2s, box-shadow 0.2s;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .dtr-post-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }
    .dtr-post-img img {
        max-height: 400px;
        object-fit: cover;
        width: 100%;
        border-radius: 10px;
    }
    .dtr-post-content {
        flex-grow: 1;
    }
    .dtr-post-excerpt {
        max-height: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .green-border {
        border: 2px solid #00b09b;
    }
    .yellow-border {
        border: 2px solid #FFA500;
    }
    .dtr-read-more {
        display: inline-block;
        padding: 10px 20px;
        color: white !important;
        border: none;
        border-radius: 5px;
        font-weight: bold;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        text-decoration: none !important;
        transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    }
    .green-button {
        background: linear-gradient(45deg, #00b09b, #96c93d);
    }
    .green-button:hover {
        background: linear-gradient(45deg, #96c93d, #00b09b);
        transform: scale(1.1);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
    .yellow-button {
        background: linear-gradient(45deg, #FFD700, #FFA500);
    }
    .yellow-button:hover {
        background: linear-gradient(45deg, #FFA500, #FFD700);
        transform: scale(1.1);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
