/* ===== ADMIN CUSTOM CSS ===== */

/* Equal height news cards */
.news-section .row {
    align-items: stretch;
}
.news-section .col-xl-4,
.news-section .col-lg-6,
.news-section .col-md-6 {
    display: flex;
}
.news-box-items {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.news-box-items .news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-box-items .news-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Equal height service cards */
.service-section-2 .row {
    align-items: stretch;
}
.service-section-2 .col-xl-3,
.service-section-2 .col-lg-6,
.service-section-2 .col-md-6 {
    display: flex;
}
.service-box-items-2 {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.service-box-items-2 .service-btn {
    margin-top: auto;
}

/* ===== COMMENTS SECTION ===== */
.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0DAFDA20;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comment-avatar span {
    font-size: 20px;
    font-weight: 600;
    color: #0DAFDA;
}

/* ===== FOOTER RECENT ARTICLES ===== */
.recent-post .thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

/* ===== FILE INPUT DROP ZONE ===== */
.drop-zone {
    border: 2px dashed #0DAFDA;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
}
.drop-zone:hover {
    background: #0DAFDA10;
}
.drop-zone input[type="file"] {
    display: none;
}
.drop-zone-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0.75rem;
}
.drop-zone-preview .preview-item {
    position: relative;
}
.drop-zone-preview img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}
.drop-zone-preview .remove-preview {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dc3545;
    color: white;
    border: none;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}