/* tribute.php */

.memorial-subtitle {
        font-size: 1.2rem;
        color: #666;
        margin-top: 1rem;
        font-weight: 400;
    }

    .memorial-icon {
        position: absolute;
        background: #04458B;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 18px;
        box-shadow: 0 4px 15px rgba(4, 69, 139, 0.3);
    }

    .memorial-icon.one {
        top: 20%;
        right: 10%;
    }

    .memorial-icon.two {
        bottom: 30%;
        left: 8%;
    }

    .memorial-icon.three {
        top: 40%;
        right: 5%;
    }

    @media (max-width: 768px) {
        .memorial-icon {
            display: none;
        }
    }
