@font-face {
    font-family: "Good Times";
    src: url("../fonts/good_times/Good Times Rg.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Sora";
    src: url("../fonts/sora/Sora-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
}

/* Resources Grid */
.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.resource-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: #011423;
    transition: all 0.3s ease;
    min-height: 100px;
}

.resource-item:hover {
    transform: translateY(-2px);
}

.resource-content {
    flex: 1;
    padding-right: 2rem;

}

.resource-title {
    font-family: "Good Times", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.5px;
}

.resource-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.section-header{
    text-align: center;
    margin-top: 60px;
}


.read-link i{
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    color: var(--primary-green);
}


.read-link:hover i{
    transform: rotate(0deg);
    color: var(--link-hover);
}


.btn-download,
.btn-read {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
}
.resource-actions span
 {
    color: #9CC775;
    font-family: "Sora", sans-serif;
}
.download-read-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-download:hover,
.btn-read:hover {
    
    transform: scale(1.1);
}

.btn-download svg,
.btn-read svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .resource-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        min-height: auto;
    }

    .resource-content {
        padding-right: 0;
        width: 100%;
    }

    .resource-title {
        font-size: 0.95rem;
    }

    .resource-actions {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .resource-item {
        padding: 1.5rem;
    }

    .resource-title {
        font-size: 0.9rem;
    }

    .btn-download,
    .btn-read {
        width: 36px;
        height: 36px;
    }
}
