/* Sector Grid Styles */
.sector-card {
    background-color: transparent;
    height: 220px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.sector-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-back {
    background-color: #ffffff;
    color: #333;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border: 1px solid #eee;
}

.divider-red-small {
    width: 30px;
    height: 2px;
    background-color: #bf2626;
    margin: 10px auto;
}

.card-back h6 {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.card-back p {
    font-size: 0.75rem;
    line-height: 1.4;
}