.classic-article-card {
    border: 1px solid hsl(0, 0%, 88%);
    border-radius: 8px;
    overflow: hidden;
    background: hsl(0, 0%, 100%);
    box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.12);
}

.classic-article-header {
    position: relative;
    border-bottom: 1px solid hsl(0, 0%, 88%);
}

.classic-article-image {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: hsla(0, 0%, 0%, 0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(0, 0%, 100%);
    font-size: 24px;
}

.classic-article-body {
    padding: 25px;
}

.article-meta {
    margin-bottom: 15px;
}

.article-date {
    color: hsl(0, 0%, 40%);
    font-size: 14px;
    font-style: italic;
}

.article-title {
    font-size: 24px;
    margin: 0 0 15px 0;
    color: hsl(0, 0%, 20%);
    font-weight: bold;
    line-height: 1.3;
}

.article-text {
    font-size: 16px;
    line-height: 1.6;
    color: hsl(0, 0%, 27%);
    margin-bottom: 25px;
}

.article-text span[data-bg-gold] {
    --transparent: 0.3;
    --gold: hsl(43 55% 50% / var(--transparent));
    background-color: var(--gold);
}

.article-text span[data-color-red] {
    color: var(--dark-red);
    font-weight: bold;
}

.article-text span[data-color-gold] {
    color: var(--gold);
    font-weight: bold;
}

.article-text span[data-color-gray] {
    color: var(--dark-gray);
    font-weight: bold;
}

.article-text span[data-display-block] {
    display: block;
}

.article-text span[data-text-center] {
    text-align: center;
}

.article-text span[data-text-right] {
    text-align: right;
}

.attachments-section {
    margin: 25px 0;
    padding-top: 15px;
    border-top: 1px dashed hsl(0, 0%, 87%);
}

.attachments-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: hsl(0, 0%, 20%);
    font-weight: bold;
}

.attachments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.attachment-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: hsl(0, 0%, 98%);
    border: 1px solid hsl(0, 0%, 88%);
    border-radius: 3px;
    text-decoration: none;
    color: hsl(0, 0%, 20%);
    transition: all 0.2s ease;
}

.attachment-item:hover {
    background: hsl(0, 0%, 94%);
    border-color: hsl(0, 0%, 80%);
}

.attachment-icon {
    margin-right: 15px;
}

.attachment-icon img {
    width: 32px;
    height: 32px;
}

.attachment-details {
    flex: 1;
    min-width: 0;
}

.attachment-name {
    display: block;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.attachment-type {
    font-size: 12px;
    color: hsl(0, 0%, 40%);
}

.attachment-action {
    margin-left: 15px;
    color: hsl(0, 0%, 40%);
    font-size: 14px;
}

.article-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
    border-top: 1px dashed hsl(0, 0%, 87%);
}

.share-button {
    background: var(--dark-red);
    color: hsl(0, 0%, 100%);
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.share-button:hover {
    background: var(--light-red);
}

.share-button i {
    margin-right: 5px;
}
