/* Quick Links Widget Styles */
.quick-links-widget {
    width: 100%;
}

.quick-links-section-title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    text-align: left;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.quick-link-item {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.quick-link-content-wrapper {
    flex-grow: 1;
}

.quick-link-image {
    margin-bottom: 15px;
}

.quick-link-image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.quick-link-image i {
    font-size: 60px;
    color: #3498db;
}

.quick-link-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.quick-link-content {
    font-size: 0.9em;
    color: #666;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 15px;
}

.quick-link-button {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #3498db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
 

.quick-link-button i {
    color: #ffffff;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quick-link-item {
        padding: 15px;
        min-height: 150px;
    }
    
    .quick-link-button {
        right: 15px;
        width: 35px;
        height: 35px;
    }
    
    .quick-link-button i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .quick-links-section-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
    
    .quick-link-title {
        font-size: 1.1em;
    }
    
    .quick-link-content {
        font-size: 0.85em;
    }
}