.results-grid-section {
    padding-top: 70px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.result-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 30px;
    padding-right: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.result-image-wrapper {
    position: relative;
    width: 100%;
    height: 270px;
    margin-bottom: 30px;
}

.result-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.result-image-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--light-blue);
    border-radius: 30px;
    z-index: 1;
    left: 20px;
    bottom: 20px;
}

.result-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
    padding: 20px;
}

.result-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: black;
    margin: 0;
    line-height: 1.3;
}

.result-description {
    font-size: 1rem;
    color: #333333;
    margin: 0;
    line-height: 1.6;
    flex-grow: 1;
}

.result-download-btn {
    display: inline-block;
    background: var(--primary-dark-blue);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
}

.result-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

body.mic-toolbox-fonts-simple .result-title {
    font-size: 1.5rem;
}

body.mic-toolbox-fonts-simple .result-description {
    font-size: 1rem;
}

body.mic-toolbox-fonts-simple .result-download-btn {
    font-size: 1rem;
    padding: 12px 32px;
}
