﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background: #171717;
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Р”РµРєРѕСЂР°С‚РёРІРЅР°СЏ Р°РєС†РµРЅС‚РЅР°СЏ РїРѕР»РѕСЃР° РІРІРµСЂС…Сѓ */
.ornament-stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #007a3d, #d4af37);
}

.photos {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.photo-frame {
    flex: 1;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #282828;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.photo-frame:hover {
    transform: translateY(-3px);
    border-color: #d4af37;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.info {
    margin-bottom: 15px;
}

.name {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    font-weight: 800;
}

.name span {
    color: #d4af37; /* Р—РѕР»РѕС‚РёСЃС‚С‹Р№ Р°РєС†РµРЅС‚ РЅР° С„Р°РјРёР»РёСЋ */
}

.year {
    font-size: 14px;
    color: #888888;
    margin-top: 6px;
    letter-spacing: 1px;
}

.quote {
    background: #111111;
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid #007a3d; /* Р—РµР»РµРЅС‹Р№ Р°РєС†РµРЅС‚ */
}

.quote p {
    font-size: 13px;
    font-style: italic;
    color: #aaaaaa;
}
