.era-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px; /* Rounded edges */
    padding: 20px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    width: 100%; /* Ensures it fills the full width of the container */
    box-sizing: border-box; /* Includes padding in width calculations */
}

.era-image-column {
    flex: 2;
    text-align: center;
}

.era-main-text {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
}

.era-additional-text {
    font-size: 1em;
    color: #666;
    margin-top: 10px;
}

.era-text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centers the image vertically */
}

.era-text-column img {
    width: 30%;
    height: 30%;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 5px; /* Rounded edges for the image */
}

.era-image-caption {
    font-size: 0.8em;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

.era-list {
    padding: 5%;
}