/* ==========================================
   TRIBUTES SECTION
========================================== */

.tributes-wrapper {
    margin-top: 20px;
}

/* ==========================================
   TRIBUTE FORM CARD
========================================== */

.tribute-wrapper {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 35px;
}

.tribute-wrapper h3 {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    position: relative;
    padding-bottom: 12px;
}

.tribute-wrapper h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #2563eb;
    border-radius: 999px;
}

/* ==========================================
   FORM ELEMENTS
========================================== */

.tribute-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tribute-wrapper input,
.tribute-wrapper textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #111827;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.tribute-wrapper input:focus,
.tribute-wrapper textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.tribute-wrapper textarea {
    min-height: 140px;
    resize: vertical;
}

.tribute-wrapper input::placeholder,
.tribute-wrapper textarea::placeholder {
    color: #9ca3af;
}

/* ==========================================
   SUBMIT BUTTON
========================================== */

.tribute-wrapper button {
    align-self: flex-start;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
}

.tribute-wrapper button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.30);
}

/* ==========================================
   TRIBUTE LIST
========================================== */

.tribute-list {
    margin-top: 10px;
}

/* ==========================================
   TRIBUTE CARD
========================================== */

.tribute-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.tribute-name {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.tribute-message {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.9;
    color: #4b5563;
    /* white-space: pre-line; */
}

.tribute-date {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #9ca3af;
    background: #f3f4f6;
    padding: 6px 10px;
    border-radius: 999px;
}

/* ==========================================
   EMPTY STATE
========================================== */

.tribute-empty-state {
    text-align: center;
    padding: 50px 20px;
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 18px;
}

.tribute-empty-state i {
    font-size: 42px;
    color: #9ca3af;
    margin-bottom: 15px;
}

.tribute-empty-state p {
    margin: 0;
    font-size: 15px;
    color: #6b7280;
}

/* ==========================================
   PAGINATION
========================================== */

.tribute-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.tribute-page-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #374151;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tribute-page-number:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.tribute-page-number.active {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px) {
    .tribute-wrapper {
        padding: 24px 20px;
    }

    .tribute-item {
        padding: 20px;
    }

    .tribute-wrapper h3 {
        font-size: 22px;
    }

    .tribute-name {
        font-size: 18px;
    }

    .tribute-wrapper button {
        width: 100%;
    }
}