/* COA Grid Styles */
.coa-grid-wrapper {
    margin: 20px 0;
    font-family: 'Inter', sans-serif;
}

.coa-grid-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 25px;
    text-align: center;
}

.coa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.coa-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.coa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #4299e1;
}

.coa-banner {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f7fafc;
}

.coa-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coa-card:hover .coa-banner img {
    transform: scale(1.1);
}

.coa-card-inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.coa-icon {
    color: #4299e1;
    margin-bottom: 12px;
    background: #ebf8ff;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.coa-info {
    margin-bottom: 20px;
}

.coa-label {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    line-height: 1.4;
}

.coa-action {
    width: 100%;
}

.coa-button {
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    background: #3182ce;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.coa-button:hover {
    background: #2b6cb0;
    color: #fff;
}

.coa-no-data {
    text-align: center;
    color: #718096;
    font-style: italic;
}

/* Responsive */
@media (max-width: 991px) {
    .coa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .coa-grid {
        grid-template-columns: 1fr;
    }

    .coa-grid-title {
        font-size: 1.5rem;
    }
}