/* Styles extracted from resources/views/tabungan-qurban.blade.php */
.tq-page {
    padding: 100px 24px 60px;
    min-height: 80vh;
}

.tq-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tq-hero {
    text-align: center;
    margin-bottom: 50px;
}

.tq-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.tq-hero h1 span {
    color: #E8650A;
}

.tq-hero p {
    color: #777;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.tq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.tq-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.tq-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(232, 101, 10, 0.15);
}

.tq-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tq-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tq-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.tq-card-desc {
    font-size: 0.88rem;
    color: #777;
    flex: 1;
    margin-bottom: 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tq-card-target {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 16px;
}

.tq-target-label {
    font-size: 0.78rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tq-target-val {
    font-size: 1.2rem;
    font-weight: 800;
    color: #E8650A;
}

.btn-tabung {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #E8650A, #f59e0b);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(232, 101, 10, 0.2);
}

.btn-tabung:hover {
    box-shadow: 0 8px 24px rgba(232, 101, 10, 0.35);
    transform: translateY(-2px);
}

.tq-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.tq-empty i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #ddd;
}

@media (max-width: 480px) {
    .tq-grid {
        grid-template-columns: 1fr;
    }

    .tq-hero h1 {
        font-size: 1.6rem;
    }
}