.ah-downloads-frontend {
    padding: 20px 0;
}

.ah-downloads-list-frontend {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ah-download-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ah-download-item:hover {
    background: #fff;
    border-color: #c0e227;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.ah-download-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c0e227;
    border-radius: 8px;
}

.ah-download-icon .dashicons {
    color: white;
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.ah-download-info {
    flex: 1;
}

.ah-download-title {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1d2327;
}

.ah-download-description {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #6c757d;
}

.ah-download-meta {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.ah-download-button-wrapper {
    flex-shrink: 0;
}

.ah-download-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px !important;
    border: none !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ah-download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(34,113,177,0.3);
}

.ah-download-button .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

@media (max-width: 1024px) {
    .ah-downloads-list-frontend {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ah-download-item {
        flex-direction: column;
        text-align: center;
    }

    .ah-download-button-wrapper {
        width: 100%;
    }

    .ah-download-button {
        width: 100%;
        justify-content: center;
    }
}