/* Terra Firma Auctions Collection Styles */
.tf-auctions-collection {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    background: #2d2d2d;
    border-radius: 16px;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tf-auction-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tf-auction-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.2);
}

.tf-auction-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tf-auction-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.tf-auction-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tf-auction-title a:hover {
    color: #00d4aa;
}

.tf-auction-description {
    margin: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-size: 14px;
}

.tf-auction-dates {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.tf-auction-start-date,
.tf-auction-end-date {
    display: block;
    margin-bottom: 5px;
}

.tf-auction-start-date::before {
    content: "📅 ";
    color: #00d4aa;
    margin-right: 4px;
}

.tf-auction-end-date::before {
    content: "⏰ ";
    color: #00d4aa;
    margin-right: 4px;
}

/* Empty state when no auctions */
.tf-auctions-collection:empty::after {
    content: "No auctions available at this time.";
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    padding: 40px 20px;
    grid-column: 1 / -1;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .tf-auctions-collection {
        padding: 30px;
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .tf-auction-item {
        padding: 15px;
    }

    .tf-auction-image {
        height: 150px;
        margin-bottom: 10px;
    }

    .tf-auction-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .tf-auctions-collection {
        padding: 20px;
        border-radius: 12px;
    }

    .tf-auction-item {
        padding: 12px;
        border-radius: 8px;
    }

    .tf-auction-title {
        font-size: 16px;
    }

    .tf-auction-description {
        font-size: 13px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    .tf-auctions-collection {
        border: 2px solid #fff;
    }

    .tf-auction-item {
        border: 2px solid #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .tf-auction-item {
        transition: none;
    }

    .tf-auction-item:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    .tf-auctions-collection {
        background: #fff;
        color: #000;
        border: 1px solid #000;
    }

    .tf-auction-item {
        background: #fff;
        color: #000;
        border: 1px solid #000;
        page-break-inside: avoid;
    }

    .tf-auction-title a {
        color: #000;
    }

    .tf-auction-description {
        color: #333;
    }

    .tf-auction-dates {
        color: #666;
    }
}