/************************************
 * ÁLTALÁNOS STÍLUS
 ************************************/
.doc-library-wrapper {
    margin: 2rem 0;
    font-family: inherit;
}

.doc-library-filters {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.doc-filter-button {
    border: 1px solid #E3E0D9;
    background: #F6F3EE;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #575348;
    transition: all .2s ease;
}

.doc-filter-button:hover {
    background: #ebe7e1;
}

.doc-filter-button.active {
    background: #DD613C;
    color: #fff;
    border-color: #DD613C;
}

/************************************
 * GRID
 ************************************/
.doc-library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/************************************
 * KÁRTYÁK
 ************************************/
.doc-item {
    position: relative;
}

.doc-item-inner {
    border-radius: 14px;
    border: 1px solid #EDEAE4;
    padding: 1.6rem;
    background: #FFFFFF;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #575348;
}

.doc-item-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #F4EFE7;
    padding: 0.25rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    color: #575348;
    border: 1px solid #E6E2DB;
}

/************************************
 * CÍM + LEÍRÁS
 ************************************/
.doc-item-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
    color: #000;
}

.doc-item-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #575348;
}

/************************************
 * META ADATOK (dátum + méret)
 ************************************/
.doc-item-meta {
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: #575348;
}

.doc-item-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/************************************
 * IKONOK a meta adatokhoz
 ************************************/
.doc-item-date:before {
    content: "📅";
    opacity: 0.8;
}

.doc-item-size:before {
    content: "📦";
    opacity: 0.8;
}

/************************************
 * LETÖLTÉS GOMB
 ************************************/
.doc-item-actions {
    margin-top: auto;
}

.doc-item-download {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.7rem;
    border-radius: 8px;
    background: #F6F3EE;
    color: #575348;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #E3E0D9;
    transition: all .2s ease;
}

.doc-item-download:hover {
    background: #DD613C;
    color: #fff;
    border-color: #DD613C;
}

/************************************
 * MOBIL
 ************************************/
@media (max-width: 600px) {
    .doc-library-grid {
        grid-template-columns: 1fr;
    }
}
/* GRID – alapból 1 oszlop, nagyobb képernyőn több */
.doc-library-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* tablet */
@media (min-width: 700px) {
    .doc-library-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* desktop */
@media (min-width: 1040px) {
    .doc-library-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
