﻿/* Card Container */
.idx-card {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
}

/* Card Image */
.idx-card-image {
    height: 180px;
    position: relative;
}

.idx-card-layer-black {
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    height: 100%
}

.idx-category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
}

/* Card Content */
.idx-card-content {
    padding: 20px;
}

.idx-card-title {
    font-size: 24px;
    font-weight: bold;
    vertical-align: bottom;
    padding-top: 140px;
    padding-left: 20px;
    color: white;
/*    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);*/
    margin: 0;
}

.idx-rating {
    font-size: 16px;
    color: #FFD700; /* Gold for stars */
    margin: 10px 0;
    padding-left: 20px;
}

.idx-card-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Footer */
.idx-card-footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.idx-author {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

.idx-link {
    font-size: 14px;
    color: #007BFF;
    text-decoration: none;
}

    .idx-link:hover {
        text-decoration: underline;
    }

/* Section */
.idx-stats-section {
    display: flex;
    justify-content: center;
/*    gap: 150px;*/
    text-align: center;
}

/* Stat Item */
.idx-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
/*    max-width: 400px;*/
}

.idx-icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

    .idx-icon-circle img {
        width: 40px;
        height: 40px;
        color: white;
    }

h2 {
    font-size: 18px;
    color: #000;
    margin: 0;
    font-weight: bold;
}

p {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}