.button-primary {
    background-color: #d32f2f; /* Default red color */
    color: #fff; /* White text */
    border: none;
    border-radius: 4px; /* Rounded edges */
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition */
    font-family: PT Sans Caption;
    font-weight: 700;
}

/* Hover state */
.button-primary:hover {
    background-color: #b71c1c; /* Darker red */
}

/* Active state */
.button-primary:active {
    background-color: #8e0000; /* Even darker red */
    box-shadow: inset 0px 4px 6px rgba(0, 0, 0, 0.2); /* Inner shadow for pressed effect */
}

/* Disabled state */
.button-primary:disabled {
    background-color: #e0e0e0; /* Light gray */
    color: #9e9e9e; /* Gray text */
    cursor: not-allowed; /* No interaction */
    opacity: 0.7; /* Slightly transparent */
}

.read-more {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #007bff; /* Blue color */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px; /* Space between text and arrow */
}

.read-more::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23007bff"><path d="M10 17l5-5-5-5v10z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.read-more:hover {
    text-decoration: underline; /* Add underline on hover */
}

.button-read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e40af;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.button-read-more:hover {
    text-decoration: underline;
}

.button-read-more img {
    width: 20px;
    height: 20px;
}
