/* 
 * Styles for the Award Winners shortcode output
 * Design based on provided image layout
 */

.award-winners-container {
    background-color: #ffffff;
    padding: 20px 40px;
    border-radius: 6px;
    font-family: inherit;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.award-winner-entry {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #cccccc; /* Subtle divider line */
    color: #263148; /* Dark navy blue text */
}

.award-winner-entry:last-child {
    border-bottom: none;
    padding-bottom: 0;
	
}

.award-winner-entry:first-child {
    padding-top: 0;
	
}

.award-winner-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.award-winner-name {
    font-size: 1.3em;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.2;
    color: #263148;
}

.award-winner-title {
    font-size: 1em;
    margin: 0 0 2px 0;
    line-height: 1.4;
    color: #3b465f; /* Slightly lighter shade for title/utility if desired, or same */
}

.award-winner-utility {
    font-size: 1em;
    margin: 0;
    line-height: 1.4;
    color: #3b465f;
}

.award-winner-year {
    flex: 0 0 100px; /* Fixed width area for the year */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
	font-family: "Epilogue" !important;
    color: #263148;
}

.award-winner-image-wrapper {
    flex: 1;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
h3.award-winner-name {
    font-family: "Epilogue" !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: 24px !important;
    color: #3a4f73 !important;
}
p.award-winner-title {
    font-family: "Epilogue" !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    margin-top: 0;
    margin-bottom: 20px;
    color: #202b46;
}
p.award-winner-utility {
    font-family: "Epilogue" !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #3a4f73;
}
.award-winner-image-square {
    width: 85px;
    height: 110px;
    background-color: #fc74ea; /* Bright pink placeholder color from design */
    border-radius: 6px; /* Slightly rounded corners */
    overflow: hidden; /* Ensures child image respects borders */
}

.award-winner-image-square img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Important to fill the square nicely */
    display: block; /* Removes bottom spacing issue */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .award-winner-entry {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }

    .award-winner-year {
        flex: none;
        width: 100%;
        justify-content: flex-start;
        margin: 10px 0;
    }

    .award-winner-image-wrapper {
        margin-left: 0;
        margin-top: 10px;
    }
}
