﻿.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #9ca3af;
    font-weight: 500;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.15s;
}

.breadcrumb a:hover {
    color: #2563eb;
}

.breadcrumb .separator {
    color: #d1d5db;
}

.header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header h1 {
    font-size: 2rem;
    font-weight: 500;
    color: #1a202c;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

p,
.description {
    font-size: 1.2rem;
    color: #4b5563;
}

.results {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.card {
    display: flex;
    flex-direction: row;
    gap: 16px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
    animation: fadeIn 0.5s ease-in;
    padding: 16px;
}

.card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    border-color: #93c5fd;
    transform: translateY(-4px) scale(1.02);
}

.card-image-container {
    position: relative;
    width: 320px;
    min-height: 200px;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f4f6;
    flex-shrink: 0;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s;
}

.card:hover img {
    transform: scale(1.05);
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 8px;
    flex: 1;
}

.card h3 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #1a202c;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.15s;
}

.card:hover h3 {
    color: #2563eb;
}

.card .meta {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0px;
}

.card .meta p {
    font-size: 14px;
    color: #374151;
}

.card .meta p.date {
    color: #9ca3af;
}

.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.breadcrumb .icon {
    width: 16px;
    height: 16px;
    color: #3b82f6;
}

.results .icon {
    color: #60a5fa;
}

@media (max-width: 768px) {
    .content {
        padding: 16px 12px;
    }

    .header h1 {
        font-size: 1.6rem;
    }

    p,
    .description {
        font-size: 1rem;
    }

    .breadcrumb {
        font-size: 14px;
        gap: 6px;
    }

    .results {
        font-size: 14px;
    }

    .card {
        gap: 12px;
        padding: 12px;
    }

    .card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 12px 8px;
    }

    .header h1 {
        font-size: 1.4rem;
    }

    p,
    .description {
        font-size: 0.9rem;
    }

    .breadcrumb {
        font-size: 12px;
        gap: 4px;
    }

    .results {
        font-size: 12px;
    }

    .grid {
        gap: 16px;
    }

    .card {
        flex-direction: column;
        padding: 8px;
    }

    .card-image-container {
        width: 100%;
        min-height: 160px;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    .card .meta {
        flex-direction: row;
        justify-content: space-between;
    }

    .card .meta p {
        font-size: 12px;
    }

    .icon,
    .breadcrumb .icon,
    .results .icon {
        width: 14px;
        height: 14px;
    }
}
