/* ================================================
   Awards Grid - awards.css
   ================================================ */

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

/* Single card */
.award-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(239, 239, 239, 1);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.awards-grid .award-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}
.award-card:hover {
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.06);
}

.award-card-inner {
    display: flex;
    flex-direction: row;
    padding: 20px;
    gap: 20px;
}

/* Image box */
.award-card-image {
    flex-shrink: 0;
    width: 163px;
	line-height:100%;
}

/* Content */
.award-card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
	max-width:374px;
	justify-content: space-between;
}

/* Label (e.g. "2025 TITAN INNOVATION AWARDS") */
.award-card-label {
    font-size: 12px;
    font-weight: 500;
    color: #757575;
    line-height: 100%;
}
.card-top-label {
    line-height: 100%;
}
/* Title */
.award-card-title {
    font-weight: 600;
    color: #24262D;
}

/* Learn More link */
.award-card-link {
    display: inline-block;
    margin-top: 4px;
    font-size: 16px;
    font-weight: 600;
    color:#6453FF;
    text-decoration: none;
    transition: color 0.2s ease;
}
.award-card:hover .award-card-link {
	text-decoration:underline;
}
/* ================================================
   Responsive
   ================================================ */

@media (max-width: 992px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 550px) {
	.award-card-inner {
		flex-direction: column;
	}
}