.categories-internal-links .category {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    text-align: center;
}
.categories-internal-links .category::before, .categories-internal-links .category::after {
    content: '';
    position: absolute;
    width: calc(100% - 35px);
    height: calc(100% - 35px);
    border: 1px solid #ddd;
    pointer-events: none;
    transition: all 300ms ease;
}
.categories-internal-links .category::before { top: 0; left: 0; border-width: 1px 0 0 1px; }
.categories-internal-links .category::after { bottom: 0; right: 0; border-width: 0 1px 1px 0; }
.categories-internal-links .category span { font-size: 4rem; color: var(--theme-gold-color); margin-bottom: 20px; }
.categories-internal-links .category h2 { font-weight: bold; margin-bottom: 0; }
.categories-internal-links .category h2 a { color: inherit; text-decoration: none; font-size: inherit; transition: color 300ms ease; }
.categories-internal-links .category h2 a:hover { color: var(--theme-gold-color); }
.categories-internal-links .category hr { border-top: 2px solid var(--theme-gold-color); opacity: 1; max-width: 100%; width: 25%; margin: 1.5rem auto; transition: width 300ms ease; }
.categories-internal-links .category:hover::before, .categories-internal-links .category:hover::after { width: 100%; height: 100%; border-color: var(--theme-gold-color); }
.categories-internal-links .category:hover hr { width: 75%; }
