### SCSS Responsive Breakpoints Definition and Usage
Source: https://context7.com/uideck/play-bootstrap/llms.txt
Defines SCSS variables for various screen sizes (e.g., desktop, laptop, tablet, mobile) and demonstrates their usage in media queries for responsive styling. These variables help maintain a consistent responsive design across different devices. No external dependencies are required.
```scss
/* assets/scss/_variables.scss */
$xl-desktop: "only screen and (min-width: 1921px)";
$desktop: "only screen and (min-width: 1400px) and (max-width: 1920px)";
$laptop: "only screen and (min-width: 1200px) and (max-width: 1399px)";
$lg: "only screen and (min-width: 992px) and (max-width: 1199px)";
$md: "only screen and (min-width: 768px) and (max-width: 991px)";
$xs: "(max-width: 767px)";
$sm: "only screen and (min-width: 576px) and (max-width: 767px)";
/* Usage example */
.container {
@media #{$xs} {
padding-left: 40px;
padding-right: 40px;
}
@media #{$sm} {
padding-left: 20px;
padding-right: 20px;
}
}
```
--------------------------------
### Features Section Component (HTML)
Source: https://context7.com/uideck/play-bootstrap/llms.txt
Displays product features in a responsive grid layout. It includes a section title and individual feature cards with icons, titles, descriptions, and links. Designed for easy integration into web pages.
```html
There are many variations of passages available.Main Features of Play
Any Questions? Answered
Multidisciplinary Web Template Built with Your Favourite Technology - HTML Bootstrap, Tailwind and React NextJS.