.hero {
    margin-top: 2rem;
    margin-bottom: 3rem;
    .details {
        h1 {
            font-size: 2.25rem;
            margin-bottom: 1rem;
        }
        p {
            font-size: 0.75rem;
        }
    }
    img {
        width: 100%;
        object-fit: scale-down;
    }

    .actions {
        padding-top: 2rem;
        display: flex;
        gap: 30px;
        justify-content: flex-start;
        align-items: center;
        font-weight: bold;
        a {
            cursor: pointer;
            transition: all 0.3s ease;
            &:hover {
                color: var(--gray-text-color);
                text-decoration: underline;
                font-size: 1.1em;
                transition: all 0.3s ease;
            }
        }
        .btn {
            color: var(--background-color);
            padding: 0.75rem;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
            background: #ed1c24;
            box-shadow: 4px 5px 4.9px rgba(0, 0, 0, 0.25);
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s ease;
            &:hover {
                color: var(--background-color);
                background: var(--secondary-color);
                transform: translateY(-2px);
                box-shadow: 4px 7px 6px rgba(0, 0, 0, 0.3);
                text-decoration: none;
                font-size: 1rem;
            }
        }
    }
}
