.welcomemessage {
    font-size: 50px;
    text-align: left;
    margin-bottom: 5px;
    margin-top: -30px;
    margin-left: 30px;
}

.mylastmatch,
.mynextmatch {
    background-color: #e0dfdf;
    color: #000;
    margin: 10px;
    padding: 20px;
    font-size: 30px;
    text-align: left;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-sizing: border-box;
    flex: 1;
}

.mylastmatch h3,
.mynextmatch h3 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 8px;
}

.latestnews {
    background-color: #e0dfdf;
    color: #000;
    border-radius: 6px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 30px;
    text-align: center;
    margin: 10px;
    padding: 20px;
    flex: 1.2;
    /* slightly larger than left column */
}

.latestnews h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.main-row {
    display: flex;
    gap: 20px;
    padding: 10px 20px;
    align-items: stretch;
    height: 520px;
    /* increased height for larger news box */
    min-height: 420px;
}

.homepagesections {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

/* Fallback image for Latest news */
.news-fallback-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.news-fallback {
    max-width: 520px;
    width: 100%;
    height: auto;
    border-radius: 6px
}

.news-caption {
    margin-top: 20px;
    color: #1c2a12;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
}