/* * Sequential Also Read Plugin Stylesheet
 * Version: 2.0.0
*/

/* The main container, styled like a <fieldset> */
.also-read-fieldset {
    position: relative;
    /* Needed for the legend positioning */
    border: 1px dashed #c51d1d;
    border-radius: 12px;
    padding: 12px 10px 10px 10px;
    /* Top padding makes space for the legend */
    margin: 15px 5px;
    background-color: #fffcf1;
}

/* The "Also read" text, styled like a <legend> */
.also-read-legend {
    position: absolute;
    top: -12px;
    /* Pulls the legend up to sit on the border */
    left: 20px;
    background-color: #fcfcfc;
    /* Same background as fieldset to "cut" the line */
    font-size: 16px;
    font-weight: 700;
    color: #c51d1d;
    padding: 0 5px;
    text-transform: uppercase;
}

.also-read-link {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    gap: 15px;
}

.also-read-image {
    flex-shrink: 0;
    width: 150px;
    height: 90px;
}

.also-read-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.also-read-title {
    font-size: 17px;
    font-weight: 600;
    color: #1e1e1e;
    line-height: 1.4;
}
