/* Mukta Font Import */
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@400;700;800&display=swap');

.vertical-recent-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Mukta', sans-serif;
    padding: 10px;
    text-align: center;
}

/* Post Wrapper with Red Border */
.vr-post {
    margin-bottom: 25px; 
    padding-bottom: 25px;
    border-bottom: 5px solid #ff0000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vr-post:last-child { border-bottom: none; }

/* Headline - Responsive Sizes */
.vr-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 15px 0;
    color: #111;
}
.vr-title a { text-decoration: none; color: inherit; }

/* Meta Info */
.vr-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}
.vr-author-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.vr-meta-info { font-size: 16px; color: #555; display: flex; align-items: center; gap: 15px; }
.vr-date { display: flex; align-items: center; gap: 5px; color: #888; }

/* FIX: High Resolution Full Image */
.vr-image {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 25px;
}
.vr-image img {
    width: 100%;
    height: auto;
    /* Removed max-height to ensure full visibility of vertical/large images */
    object-fit: contain; 
    border-radius: 8px;
    display: block;
}

/* Snippet Styling */
.vr-snippet {
    font-size: 19px;
    line-height: 1.6;
    color: #444;
    max-width: 1100px;
    margin: 0 auto 25px auto; 
}

/* Red Button Styling */
.vr-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #ffffff;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2);
}
.vr-btn:hover { background: #000; color: #fff; transform: translateY(-2px); }

/* Mobile View Adjustments */
@media screen and (max-width: 768px) {
    .vr-title { font-size: 36px; }
    .vr-snippet { font-size: 16px; padding: 0 10px; }
    .vr-btn { width: 80%; }
}
