/* Template Download Section Styles - Mobile First */

.template-download-section {
    width: 100%;
    background-color: var(--color-background-2);
}

.template-download-section .template-download-section-inner {
    display: flex;
    flex-direction: column;
    padding: 40px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.template-download-section .template-download-title {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-accent-2);
}

.template-download-section .template-download-description {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-accent-4);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.template-download-section .template-download-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
}

.template-download-section .template-download-item {
    background-color: var(--color-background-1);
    border: 1px solid var(--color-background-2);
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.template-download-section .template-download-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent-1);
    transform: translateY(-2px);
}

.template-download-section .template-download-link {
    display: flex;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.template-download-section .template-download-link:focus {
    outline: 2px solid var(--color-accent-1);
    outline-offset: 2px;
}

.template-download-section .template-download-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.template-download-section .template-download-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%);
    opacity: 0.87;
}

.template-download-section .template-download-content {
    flex: 1;
    min-width: 0;
}

.template-download-section .template-download-name {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin: 0 0 8px 0;
    color: var(--color-accent-4);
}

.template-download-section .template-download-description-item {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-accent-4);
    margin: 0 0 8px 0;
    opacity: 0.8;
}

.template-download-section .template-download-type {
    display: inline-block;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: var(--color-accent-4);
    background-color: var(--color-background-2);
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0.7;
}

/* Tablet and up */
@media only screen and (min-width: 768px) {
    .template-download-section .template-download-section-inner {
        padding: 48px 24px;
    }

    .template-download-section .template-download-title {
        font-size: 40px;
    }

    .template-download-section .template-download-description {
        font-size: 18px;
    }

    .template-download-section .template-download-list {
        gap: 20px;
    }

    .template-download-section .template-download-link {
        padding: 24px;
    }

    .template-download-section .template-download-icon {
        width: 48px;
        height: 48px;
        margin-right: 20px;
    }

    .template-download-section .template-download-icon img {
        width: 24px;
        height: 24px;
    }

    .template-download-section .template-download-name {
        font-size: 20px;
    }

    .template-download-section .template-download-description-item {
        font-size: 16px;
    }

    .template-download-section .template-download-type {
        font-size: 14px;
    }
}

/* Desktop and up */
@media only screen and (min-width: 1280px) {
    .template-download-section .template-download-section-inner {
        padding: 120px 20px;
    }

    .template-download-section .template-download-title {
        font-size: 45px;
    }

    .template-download-section .template-download-list {
        gap: 24px;
    }
}

