.report-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
}

.report-plan-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}

.report-plan-card:hover {
    transform: translateY(-4px);
}

.report-plan-image-wrap {
    margin-bottom: 25px;
	aspect-ratio: 1 / 1.28;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
	background-color: white;
	border-radius: 4px;
    box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.05);
}

.report-plan-image {
    width: 100%;
    display: block;
    height: auto;
}

.report-plan-content {
    display: flex;
    align-items: flex-start;
}

.report-plan-title {
    line-height: 1.2;
    font-weight: 500 !important;
    margin: 0;
    color: #333333;
}

.report-plan-years {
    color: #f5985d;
    font-weight: 700;
}

@media (max-width: 768px) {

    .report-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 50px;
    }
}


@media (max-width: 544px) {
	.report-plan-image-wrap {
		margin-bottom: 15px;
    box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1);
}
	
 .report-plan-grid {
        gap: 50px 25px;
    }
	
	.report-plan-title {
		font-size: 13px;
	}
}