
body {
    background: #F7F1E8;
}

.tst-wrapper {
    padding: 40px;
    font-family: Arial, sans-serif;
}

.tst-header {
    text-align: center;
    margin-bottom: 30px;
}

.tst-header h2 {
    color: #7B1023;
    font-size: 42px;
}

.tst-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.tst-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.tst-card:hover {
    transform: translateY(-5px);
}

.tst-thumb img {
    width: 100%;
    height: auto;
}

.tst-content {
    padding: 20px;
}

.tst-content h3 {
    color: #7B1023;
}

.tst-btn {
    display: inline-block;
    margin-top: 15px;
    background: #7B1023;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
}

.tst-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.tst-filters input,
.tst-filters select {
    padding: 12px;
    width: 100%;
}

@media(max-width: 992px) {
    .tst-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

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

    .tst-filters {
        flex-direction: column;
    }
}
