.also-read-section {
    padding: 20px 10px 10px;
    margin: 20px 0;
    position: relative;
    border-radius: 4px; /* Applies to the entire box */
}

/* Default Style for Top Text */
.also-read-section .also-read-text {
    font-size: 16px;
    font-weight: bold;
    background-color: #fff;
    padding: 0 10px;
    line-height: 1;
    position: absolute;
    transform: translateY(-50%);
}

/* Positioning for Top Left */
.also-read-section .also-read-text.top_left {
    top: 0;
    left: 10px;
    transform: translateY(-50%);
}

/* Positioning for Top Right */
.also-read-section .also-read-text.top_right {
    top: 0;
    right: 10px;
    transform: translateY(-50%);
}

/* Positioning for Center */
.also-read-section .also-read-text.center {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .also-read-section .also-read-text {
        font-size: 14px; /* Tablet */
    }
}

@media (max-width: 480px) {
    .also-read-section .also-read-text {
        font-size: 12px; /* Mobile */
    }
}

.also-read-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.also-read-section li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.also-read-thumbnail {
    margin-right: 10px;
    width: 60px;
    height: 60px;
    overflow: hidden;
    flex-shrink: 0;
}

.also-read-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px; /* Fixed radius for images */
}

.ar-headline-link {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: inherit;
}

/* Responsive typography for post titles */
@media (max-width: 768px) {
    .ar-headline-link {
        font-size: 14px;
        font-weight: 500;
    }
}

@media (max-width: 480px) {
    .ar-headline-link {
        font-size: 13px;
        font-weight: 500;
    }
}

/* Attribution Styling */
.also-read-attribution {
    background-color: #f0f0f0;
    text-align: right;
    padding: 8px;
    border-radius: 4px;
    margin-top: 15px;
}

.also-read-attribution a {
    color: inherit;
    text-decoration: none;
}

.also-read-attribution a:hover {
    text-decoration: underline;
}

.also-read-attribution {
    font-size: 14px;
    color: #000;
}

/* Responsive font size for attribution */
@media (max-width: 768px) {
    .also-read-attribution {
        font-size: 12px; /* Tablet */
    }
}

@media (max-width: 480px) {
    .also-read-attribution {
        font-size: 10px; /* Mobile */
    }
}
